From f7de7c3b5493aa4258313959677e88859f80559c Mon Sep 17 00:00:00 2001 From: Saurab-Shrestha Date: Sun, 17 Mar 2024 17:58:42 +0545 Subject: [PATCH] Update with verify function to check the maker request for documents --- .env | 4 +- ...pate_cascade.py => b7b896502e8e_update.py} | 16 +- alembic/versions/cb320e7880fc_update.py | 157 -- ffmpy-0.3.2-py3-none-any.whl | Bin 0 -> 5607 bytes local_data/private_gpt/docstore.json | 2 +- local_data/private_gpt/index_store.json | 2 +- .../storage.sqlite | Bin 42373120 -> 196608 bytes models/.gitignore | 2 - poetry.lock | 1714 +++++++++-------- .../ocr_components/table_ocr_api.py | 41 +- private_gpt/server/ingest/ingest_router.py | 48 +- private_gpt/server/ingest/ingest_service.py | 2 +- private_gpt/users/api/v1/routers/documents.py | 10 +- private_gpt/users/schemas/documents.py | 2 +- pyproject.toml | 2 + 15 files changed, 954 insertions(+), 1048 deletions(-) rename alembic/versions/{39c817e4fc4a_udpate_cascade.py => b7b896502e8e_update.py} (90%) delete mode 100644 alembic/versions/cb320e7880fc_update.py create mode 100644 ffmpy-0.3.2-py3-none-any.whl delete mode 100644 models/.gitignore diff --git a/.env b/.env index 30c3243e..fdfe9c80 100644 --- a/.env +++ b/.env @@ -4,8 +4,8 @@ ENVIRONMENT=dev DB_HOST=localhost DB_USER=postgres DB_PORT=5432 -DB_PASSWORD=admin -DB_NAME=GPT +DB_PASSWORD=quick +DB_NAME=QuickGpt SUPER_ADMIN_EMAIL=superadmin@email.com SUPER_ADMIN_PASSWORD=supersecretpassword diff --git a/alembic/versions/39c817e4fc4a_udpate_cascade.py b/alembic/versions/b7b896502e8e_update.py similarity index 90% rename from alembic/versions/39c817e4fc4a_udpate_cascade.py rename to alembic/versions/b7b896502e8e_update.py index 4481199a..ab6a1d84 100644 --- a/alembic/versions/39c817e4fc4a_udpate_cascade.py +++ b/alembic/versions/b7b896502e8e_update.py @@ -1,8 +1,8 @@ -"""udpate cascade +"""update -Revision ID: 39c817e4fc4a -Revises: cb320e7880fc -Create Date: 2024-03-17 11:08:22.426368 +Revision ID: b7b896502e8e +Revises: +Create Date: 2024-03-17 15:07:10.795935 """ from typing import Sequence, Union @@ -12,16 +12,16 @@ import sqlalchemy as sa # revision identifiers, used by Alembic. -revision: str = '39c817e4fc4a' -down_revision: Union[str, None] = 'cb320e7880fc' +revision: str = 'b7b896502e8e' +down_revision: Union[str, None] = None branch_labels: Union[str, Sequence[str], None] = None depends_on: Union[str, Sequence[str], None] = None def upgrade() -> None: # ### commands auto generated by Alembic - please adjust! ### - op.drop_constraint('document_department_association_document_id_fkey', 'document_department_association', type_='foreignkey') op.drop_constraint('document_department_association_department_id_fkey', 'document_department_association', type_='foreignkey') + op.drop_constraint('document_department_association_document_id_fkey', 'document_department_association', type_='foreignkey') op.create_foreign_key(None, 'document_department_association', 'document', ['document_id'], ['id'], onupdate='CASCADE', ondelete='CASCADE') op.create_foreign_key(None, 'document_department_association', 'departments', ['department_id'], ['id'], onupdate='CASCADE', ondelete='CASCADE') # op.create_unique_constraint('unique_user_role', 'user_roles', ['user_id', 'role_id', 'company_id']) @@ -33,6 +33,6 @@ def downgrade() -> None: # op.drop_constraint('unique_user_role', 'user_roles', type_='unique') op.drop_constraint(None, 'document_department_association', type_='foreignkey') op.drop_constraint(None, 'document_department_association', type_='foreignkey') - op.create_foreign_key('document_department_association_department_id_fkey', 'document_department_association', 'departments', ['department_id'], ['id']) op.create_foreign_key('document_department_association_document_id_fkey', 'document_department_association', 'document', ['document_id'], ['id']) + op.create_foreign_key('document_department_association_department_id_fkey', 'document_department_association', 'departments', ['department_id'], ['id']) # ### end Alembic commands ### diff --git a/alembic/versions/cb320e7880fc_update.py b/alembic/versions/cb320e7880fc_update.py deleted file mode 100644 index 577571a8..00000000 --- a/alembic/versions/cb320e7880fc_update.py +++ /dev/null @@ -1,157 +0,0 @@ -"""update - -Revision ID: cb320e7880fc -Revises: -Create Date: 2024-03-17 10:09:40.034197 - -""" -from typing import Sequence, Union - -from alembic import op -import sqlalchemy as sa -from sqlalchemy.dialects import postgresql - -# revision identifiers, used by Alembic. -revision: str = 'cb320e7880fc' -down_revision: Union[str, None] = None -branch_labels: Union[str, Sequence[str], None] = None -depends_on: Union[str, Sequence[str], None] = None - - -def upgrade() -> None: - # ### commands auto generated by Alembic - please adjust! ### - op.create_table('companies', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('name', sa.String(), nullable=True), - sa.PrimaryKeyConstraint('id') - ) - op.create_index(op.f('ix_companies_id'), 'companies', ['id'], unique=False) - op.create_index(op.f('ix_companies_name'), 'companies', ['name'], unique=True) - op.create_table('document_type', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('type', sa.String(length=225), nullable=False), - sa.PrimaryKeyConstraint('id'), - sa.UniqueConstraint('type') - ) - op.create_index(op.f('ix_document_type_id'), 'document_type', ['id'], unique=False) - op.create_table('roles', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('name', sa.String(length=100), nullable=True), - sa.Column('description', sa.Text(), nullable=True), - sa.PrimaryKeyConstraint('id') - ) - op.create_index(op.f('ix_roles_id'), 'roles', ['id'], unique=False) - op.create_index(op.f('ix_roles_name'), 'roles', ['name'], unique=False) - op.create_table('departments', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('name', sa.String(), nullable=True), - sa.Column('company_id', sa.Integer(), nullable=True), - sa.Column('total_users', sa.Integer(), nullable=True), - sa.Column('total_documents', sa.Integer(), nullable=True), - sa.ForeignKeyConstraint(['company_id'], ['companies.id'], ), - sa.PrimaryKeyConstraint('id') - ) - op.create_index(op.f('ix_departments_id'), 'departments', ['id'], unique=False) - op.create_index(op.f('ix_departments_name'), 'departments', ['name'], unique=True) - op.create_table('subscriptions', - sa.Column('sub_id', sa.Integer(), nullable=False), - sa.Column('company_id', sa.Integer(), nullable=True), - sa.Column('start_date', sa.DateTime(), nullable=True), - sa.Column('end_date', sa.DateTime(), nullable=True), - sa.ForeignKeyConstraint(['company_id'], ['companies.id'], ), - sa.PrimaryKeyConstraint('sub_id') - ) - op.create_index(op.f('ix_subscriptions_sub_id'), 'subscriptions', ['sub_id'], unique=False) - op.create_table('users', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('email', sa.String(length=225), nullable=False), - sa.Column('hashed_password', sa.String(), nullable=False), - sa.Column('username', sa.String(length=225), nullable=False), - sa.Column('is_active', sa.Boolean(), nullable=True), - sa.Column('last_login', sa.DateTime(), nullable=True), - sa.Column('created_at', sa.DateTime(), nullable=True), - sa.Column('updated_at', sa.DateTime(), nullable=True), - sa.Column('password_created', sa.DateTime(), nullable=True), - sa.Column('checker', sa.Boolean(), nullable=True), - sa.Column('company_id', sa.Integer(), nullable=True), - sa.Column('department_id', sa.Integer(), nullable=False), - sa.ForeignKeyConstraint(['company_id'], ['companies.id'], ), - sa.ForeignKeyConstraint(['department_id'], ['departments.id'], ), - sa.PrimaryKeyConstraint('id'), - sa.UniqueConstraint('email'), - sa.UniqueConstraint('username'), - sa.UniqueConstraint('username', name='unique_username_no_spacing') - ) - op.create_table('audit', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('timestamp', sa.DateTime(), nullable=False), - sa.Column('user_id', sa.Integer(), nullable=True), - sa.Column('model', sa.String(length=100), nullable=False), - sa.Column('action', sa.String(length=50), nullable=False), - sa.Column('details', postgresql.JSONB(astext_type=sa.Text()), nullable=True), - sa.Column('ip_address', sa.String(length=45), nullable=True), - sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='SET NULL'), - sa.PrimaryKeyConstraint('id') - ) - op.create_index(op.f('ix_audit_id'), 'audit', ['id'], unique=False) - op.create_table('document', - sa.Column('id', sa.Integer(), nullable=False), - sa.Column('filename', sa.String(length=225), nullable=False), - sa.Column('uploaded_by', sa.Integer(), nullable=False), - sa.Column('uploaded_at', sa.DateTime(), nullable=False), - sa.Column('is_enabled', sa.Boolean(), nullable=True), - sa.Column('verified', sa.Boolean(), nullable=True), - sa.Column('doc_type_id', sa.Integer(), nullable=True), - sa.Column('action_type', sa.Enum('INSERT', 'UPDATE', 'DELETE', name='makercheckeractiontype'), nullable=False), - sa.Column('status', sa.Enum('PENDING', 'APPROVED', 'REJECTED', name='makercheckerstatus'), nullable=False), - sa.Column('verified_at', sa.DateTime(), nullable=True), - sa.Column('verified_by', sa.Integer(), nullable=True), - sa.ForeignKeyConstraint(['doc_type_id'], ['document_type.id'], ), - sa.ForeignKeyConstraint(['uploaded_by'], ['users.id'], ), - sa.ForeignKeyConstraint(['verified_by'], ['users.id'], ), - sa.PrimaryKeyConstraint('id'), - sa.UniqueConstraint('filename') - ) - op.create_index(op.f('ix_document_id'), 'document', ['id'], unique=False) - op.create_table('user_roles', - sa.Column('user_id', sa.Integer(), nullable=False), - sa.Column('role_id', sa.Integer(), nullable=False), - sa.Column('company_id', sa.Integer(), nullable=False), - sa.ForeignKeyConstraint(['company_id'], ['companies.id'], ), - sa.ForeignKeyConstraint(['role_id'], ['roles.id'], ), - sa.ForeignKeyConstraint(['user_id'], ['users.id'], ), - sa.PrimaryKeyConstraint('user_id', 'role_id', 'company_id'), - sa.UniqueConstraint('user_id', 'role_id', 'company_id', name='unique_user_role') - ) - op.create_table('document_department_association', - sa.Column('department_id', sa.Integer(), nullable=True), - sa.Column('document_id', sa.Integer(), nullable=True), - sa.ForeignKeyConstraint(['department_id'], ['departments.id'], ), - sa.ForeignKeyConstraint(['document_id'], ['document.id'], ) - ) - # ### end Alembic commands ### - - -def downgrade() -> None: - # ### commands auto generated by Alembic - please adjust! ### - op.drop_table('document_department_association') - op.drop_table('user_roles') - op.drop_index(op.f('ix_document_id'), table_name='document') - op.drop_table('document') - op.drop_index(op.f('ix_audit_id'), table_name='audit') - op.drop_table('audit') - op.drop_table('users') - op.drop_index(op.f('ix_subscriptions_sub_id'), table_name='subscriptions') - op.drop_table('subscriptions') - op.drop_index(op.f('ix_departments_name'), table_name='departments') - op.drop_index(op.f('ix_departments_id'), table_name='departments') - op.drop_table('departments') - op.drop_index(op.f('ix_roles_name'), table_name='roles') - op.drop_index(op.f('ix_roles_id'), table_name='roles') - op.drop_table('roles') - op.drop_index(op.f('ix_document_type_id'), table_name='document_type') - op.drop_table('document_type') - op.drop_index(op.f('ix_companies_name'), table_name='companies') - op.drop_index(op.f('ix_companies_id'), table_name='companies') - op.drop_table('companies') - # ### end Alembic commands ### diff --git a/ffmpy-0.3.2-py3-none-any.whl b/ffmpy-0.3.2-py3-none-any.whl new file mode 100644 index 0000000000000000000000000000000000000000..1f20c5826722a36879abae2080fc74d72f9b68a2 GIT binary patch literal 5607 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 literal 0 HcmV?d00001 diff --git a/local_data/private_gpt/docstore.json b/local_data/private_gpt/docstore.json index b5bd9424..1acf1a66 100644 --- a/local_data/private_gpt/docstore.json +++ b/local_data/private_gpt/docstore.json @@ -1 +1 @@ -{"docstore/data": {"6a631852-fb8e-4ca6-8cb0-1e3b7b881be0": {"__data__": {"id_": "6a631852-fb8e-4ca6-8cb0-1e3b7b881be0", "embedding": null, "metadata": {"window": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "original_text": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n", "page_label": "1", "file_name": "slavery.pdf", "doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "29dc06d4-2164-4129-868f-4a613daa06dc", "node_type": "4", "metadata": {"page_label": "1", "file_name": "slavery.pdf", "doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "hash": "68b2d73a90f40a008c9ada87415c99209a19d546488a12d77a906da2707908c8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5494819d-a99c-4902-ac0a-ae3353796805", "node_type": "1", "metadata": {"window": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "original_text": "Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n"}, "hash": "61c95d9af135c1c6eddf0cd47a253fc63d8567be727071e6476e65c070dadf7e", "class_name": "RelatedNodeInfo"}}, "text": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n", "start_char_idx": 0, "end_char_idx": 77, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5494819d-a99c-4902-ac0a-ae3353796805": {"__data__": {"id_": "5494819d-a99c-4902-ac0a-ae3353796805", "embedding": null, "metadata": {"window": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "original_text": "Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "page_label": "1", "file_name": "slavery.pdf", "doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "29dc06d4-2164-4129-868f-4a613daa06dc", "node_type": "4", "metadata": {"page_label": "1", "file_name": "slavery.pdf", "doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "hash": "68b2d73a90f40a008c9ada87415c99209a19d546488a12d77a906da2707908c8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6a631852-fb8e-4ca6-8cb0-1e3b7b881be0", "node_type": "1", "metadata": {"window": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "original_text": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n", "page_label": "1", "file_name": "slavery.pdf", "doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "hash": "c9db004cc9ab78eb07e58a74000f7fc3d2cdca27ba34f95587e90df97d50a2dd", "class_name": "RelatedNodeInfo"}}, "text": "Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "start_char_idx": 77, "end_char_idx": 136, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c2c51f1a-3c4c-4f7c-b814-4da4ef71765b": {"__data__": {"id_": "c2c51f1a-3c4c-4f7c-b814-4da4ef71765b", "embedding": null, "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. ", "original_text": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24a22607-3347-48a6-ba9e-d72156f02a9b", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. ", "original_text": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. "}, "hash": "91b89e735d830b6edebd89b52dc682a5fbc61e5a1d77abc33cc0922ef49dcbeb", "class_name": "RelatedNodeInfo"}}, "text": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n", "start_char_idx": 0, "end_char_idx": 119, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "24a22607-3347-48a6-ba9e-d72156f02a9b": {"__data__": {"id_": "24a22607-3347-48a6-ba9e-d72156f02a9b", "embedding": null, "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. ", "original_text": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c2c51f1a-3c4c-4f7c-b814-4da4ef71765b", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. ", "original_text": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "25312ac031bbf85e5c609a68efb6c4a55685113dd97de44437b399cfb9f7752c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83143d31-b3ca-4cbc-bfc9-1dab636c966a", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. ", "original_text": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n"}, "hash": "d2c4a08c0c9452372974cae1911b5f1adbb99ab86bf42672447cfe329ebff6b3", "class_name": "RelatedNodeInfo"}}, "text": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. ", "start_char_idx": 119, "end_char_idx": 270, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83143d31-b3ca-4cbc-bfc9-1dab636c966a": {"__data__": {"id_": "83143d31-b3ca-4cbc-bfc9-1dab636c966a", "embedding": null, "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. ", "original_text": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "24a22607-3347-48a6-ba9e-d72156f02a9b", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. ", "original_text": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "b6fcb21a8700301929aede64f2efd79a6e8b948be13afd2c0a6210eee0a86a4a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "68a75094-0a21-47c5-b93e-c35a8d18d947", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n", "original_text": "As European settlement grew, so did the demand for enslaved \npeople. "}, "hash": "e98e3d31fd8b9d5cb90d7be8853c016269ab648059c18b5b859ec32ee50359d3", "class_name": "RelatedNodeInfo"}}, "text": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n", "start_char_idx": 270, "end_char_idx": 1024, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "68a75094-0a21-47c5-b93e-c35a8d18d947": {"__data__": {"id_": "68a75094-0a21-47c5-b93e-c35a8d18d947", "embedding": null, "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n", "original_text": "As European settlement grew, so did the demand for enslaved \npeople. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83143d31-b3ca-4cbc-bfc9-1dab636c966a", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. ", "original_text": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "2d7ecf7f99882f37e92b81895a8c21ba1878600b2865ea411c2a62d734ce6c50", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21", "node_type": "1", "metadata": {"window": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. ", "original_text": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. "}, "hash": "f615a6024348291b84388714614599ec72d8598fc7b9614b7daf5e442c77be3f", "class_name": "RelatedNodeInfo"}}, "text": "As European settlement grew, so did the demand for enslaved \npeople. ", "start_char_idx": 1024, "end_char_idx": 1093, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21": {"__data__": {"id_": "d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21", "embedding": null, "metadata": {"window": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. ", "original_text": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "68a75094-0a21-47c5-b93e-c35a8d18d947", "node_type": "1", "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n", "original_text": "As European settlement grew, so did the demand for enslaved \npeople. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "da325efe8d239b789519ff565d0de03aeca8050d92293c8c00ed0914d8fadcf5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b02533b8-c391-4c12-b275-64526272c0bf", "node_type": "1", "metadata": {"window": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. ", "original_text": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. "}, "hash": "799c17c03087fb3209a8056a8f680d05cc8d507cf18de1eb2e1000f6e1bf4b5f", "class_name": "RelatedNodeInfo"}}, "text": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. ", "start_char_idx": 1093, "end_char_idx": 1300, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b02533b8-c391-4c12-b275-64526272c0bf": {"__data__": {"id_": "b02533b8-c391-4c12-b275-64526272c0bf", "embedding": null, "metadata": {"window": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. ", "original_text": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21", "node_type": "1", "metadata": {"window": "Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. ", "original_text": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "89d4ee84f4baf25e6f9fc47b018739f19e4dd0e68b4ad2d7b4f33386b8dbceb0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d028ff1f-c35d-46cc-bd7f-0ea3a655e513", "node_type": "1", "metadata": {"window": "As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. ", "original_text": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n"}, "hash": "4cc543eb7a008c57f55f88c2458d7ec330096a2d58f56f426795013d7d73a3de", "class_name": "RelatedNodeInfo"}}, "text": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. ", "start_char_idx": 1300, "end_char_idx": 1429, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d028ff1f-c35d-46cc-bd7f-0ea3a655e513": {"__data__": {"id_": "d028ff1f-c35d-46cc-bd7f-0ea3a655e513", "embedding": null, "metadata": {"window": "As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. ", "original_text": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b02533b8-c391-4c12-b275-64526272c0bf", "node_type": "1", "metadata": {"window": "Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. ", "original_text": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "52dbb0aecc850ef4db9f47d24222375320875012c354a19d1f97f0bb734cfb81", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83509f26-a88a-45a3-b0cd-4db3cdca12ae", "node_type": "1", "metadata": {"window": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n", "original_text": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. "}, "hash": "c472fc0e070349d7b4c414a3987de93ea3faa5347b0011e260e5dc2b3f237f1d", "class_name": "RelatedNodeInfo"}}, "text": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n", "start_char_idx": 1429, "end_char_idx": 1571, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83509f26-a88a-45a3-b0cd-4db3cdca12ae": {"__data__": {"id_": "83509f26-a88a-45a3-b0cd-4db3cdca12ae", "embedding": null, "metadata": {"window": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n", "original_text": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d028ff1f-c35d-46cc-bd7f-0ea3a655e513", "node_type": "1", "metadata": {"window": "As European settlement grew, so did the demand for enslaved \npeople. Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. ", "original_text": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "464d6b8cdfd665124655f2436a76be2e45422bd764c5ce9c15e7560b998e4933", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "45e2c9d6-f52d-456d-b335-2ff8a3efc624", "node_type": "1", "metadata": {"window": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. ", "original_text": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. "}, "hash": "621008401854408d37dc4f2651e6c698f229cb65cc37988e945aeea5952ea73a", "class_name": "RelatedNodeInfo"}}, "text": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. ", "start_char_idx": 1571, "end_char_idx": 1684, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "45e2c9d6-f52d-456d-b335-2ff8a3efc624": {"__data__": {"id_": "45e2c9d6-f52d-456d-b335-2ff8a3efc624", "embedding": null, "metadata": {"window": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. ", "original_text": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83509f26-a88a-45a3-b0cd-4db3cdca12ae", "node_type": "1", "metadata": {"window": "Over the next 300 years more than 11 million enslaved \npeople were transported across the Atlantic from Africa to \nAmerica and the West Indies, and Britain led this trade from the \nmid-17th century onwards. Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n", "original_text": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "acae0459527b0607aff40a4c527a36eef213d3dcbccf957ae2e0ee30593aac19", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f4dde1b9-a171-4ba5-84f9-f033722675e0", "node_type": "1", "metadata": {"window": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. ", "original_text": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. "}, "hash": "7a11b76e0794fcde31f0d70e22e8d284ff12a860cc7e0aa1d3c561f0086e3944", "class_name": "RelatedNodeInfo"}}, "text": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. ", "start_char_idx": 1684, "end_char_idx": 1886, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f4dde1b9-a171-4ba5-84f9-f033722675e0": {"__data__": {"id_": "f4dde1b9-a171-4ba5-84f9-f033722675e0", "embedding": null, "metadata": {"window": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. ", "original_text": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "45e2c9d6-f52d-456d-b335-2ff8a3efc624", "node_type": "1", "metadata": {"window": "Ports such as Bristol, Liverpool and \nGlasgow sent out many slaving ships each year, bringing great \nprosperity to their owners. Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. ", "original_text": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "bbde829c1d50d17dcf97dacc190aa925c69275a5957aeadd6c1887a759790e00", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f6e1d1a5-cf15-41ab-9d85-c1884305d548", "node_type": "1", "metadata": {"window": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n"}, "hash": "b0f1f782294b78bae8aef811f725f1f135512f85823774dbc14cebb6727736a5", "class_name": "RelatedNodeInfo"}}, "text": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. ", "start_char_idx": 1886, "end_char_idx": 2098, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f6e1d1a5-cf15-41ab-9d85-c1884305d548": {"__data__": {"id_": "f6e1d1a5-cf15-41ab-9d85-c1884305d548", "embedding": null, "metadata": {"window": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f4dde1b9-a171-4ba5-84f9-f033722675e0", "node_type": "1", "metadata": {"window": "Many other cities also grew rich on \nthe profits of industries which depended on slave-produced \nmaterials such as cotton, sugar and tobacco.\n The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. ", "original_text": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "61d79e3ffe5ab0eca2a40bf623590aad609dac7b1a0af41103678f5f548f9f80", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1564a509-3858-4618-8b3e-f251f2d7eb84", "node_type": "1", "metadata": {"window": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. "}, "hash": "82b24f7e211f890478436f1cf966bce39b35a42f96c239038dd054be6507344a", "class_name": "RelatedNodeInfo"}}, "text": "Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n", "start_char_idx": 2098, "end_char_idx": 2287, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1564a509-3858-4618-8b3e-f251f2d7eb84": {"__data__": {"id_": "1564a509-3858-4618-8b3e-f251f2d7eb84", "embedding": null, "metadata": {"window": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f6e1d1a5-cf15-41ab-9d85-c1884305d548", "node_type": "1", "metadata": {"window": "The campaign in Britain to abolish slavery began in the 1760s, \nsupported by both black and white abolitionists. The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "e6629156fb5dbe8ef3f117f664cd9933fd42646d0118e8310b4807871b130626", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "866a4b6f-aee8-47d9-be5d-feaa3acad45b", "node_type": "1", "metadata": {"window": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. "}, "hash": "887f41122ace26e3b98d6b15a1a84f06d934f1b4f65f74c797c3d298c69591bb", "class_name": "RelatedNodeInfo"}}, "text": "The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. ", "start_char_idx": 2287, "end_char_idx": 2431, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "866a4b6f-aee8-47d9-be5d-feaa3acad45b": {"__data__": {"id_": "866a4b6f-aee8-47d9-be5d-feaa3acad45b", "embedding": null, "metadata": {"window": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1564a509-3858-4618-8b3e-f251f2d7eb84", "node_type": "1", "metadata": {"window": "The battle was \nlong and hard-fought, with pro-slavery campaigners arguing \nthat the slave trade was important for the British economy \nand claiming that enslaved Africans were happy and well-\ntreated. However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "24683005f42b39dc50479bef6d42bdea379084eb7d89c807118e8975b37720f9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5250640b-2a90-4a3f-beae-e9c425b2e409", "node_type": "1", "metadata": {"window": "Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "In 1833 Parliament passed Introduction"}, "hash": "31a3e24cb8d71439a086b4a97ef6ec867408971b27a11bec4023bb84879b4bb0", "class_name": "RelatedNodeInfo"}}, "text": "However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. ", "start_char_idx": 2431, "end_char_idx": 2569, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5250640b-2a90-4a3f-beae-e9c425b2e409": {"__data__": {"id_": "5250640b-2a90-4a3f-beae-e9c425b2e409", "embedding": null, "metadata": {"window": "Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "In 1833 Parliament passed Introduction", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3", "node_type": "4", "metadata": {"page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "866a4b6f-aee8-47d9-be5d-feaa3acad45b", "node_type": "1", "metadata": {"window": "However the frequent rebellions by enslaved Africans \nand evidence of the appalling conditions endured by them \nduring and after transportation led to growing support for \nthe demands to abolish the slave trade. Eventually, in 1807, \nParliament passed an Act for the Abolition of the Slave Trade, \nwhich abolished the trade by Britain in enslaved peoples \nbetween Africa, the West Indies and America.\n The pro-slavery campaigners had argued that with no new \nenslaved Africans being traded slave-owners would treat their \nexisting slaves better. However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. In 1833 Parliament passed Introduction", "original_text": "However, it was clear that enslaved \npeople were still harshly treated and many continued to resist \nand rebel against their enslavement. ", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "hash": "1d9421657c777a5e164b093875fecae15dc998f55f5288dc59e0dd9dc9285569", "class_name": "RelatedNodeInfo"}}, "text": "In 1833 Parliament passed Introduction", "start_char_idx": 2569, "end_char_idx": 2607, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f09ad18b-809e-48c1-9594-08c0e7cd94e8": {"__data__": {"id_": "f09ad18b-809e-48c1-9594-08c0e7cd94e8", "embedding": null, "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34", "node_type": "4", "metadata": {"page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "2bf06f11a004c44b8a39a4c3cb79d07f39634c2bf6c672885e84c14d4cf85a17", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "27006bda-d38e-440b-9b44-51cb0c237139", "node_type": "1", "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. "}, "hash": "d2368942c8f9a69d0a1d43d39ff9c2cda2abd54849b76bbe970bc53398950b59", "class_name": "RelatedNodeInfo"}}, "text": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. ", "start_char_idx": 0, "end_char_idx": 184, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "27006bda-d38e-440b-9b44-51cb0c237139": {"__data__": {"id_": "27006bda-d38e-440b-9b44-51cb0c237139", "embedding": null, "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34", "node_type": "4", "metadata": {"page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "2bf06f11a004c44b8a39a4c3cb79d07f39634c2bf6c672885e84c14d4cf85a17", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f09ad18b-809e-48c1-9594-08c0e7cd94e8", "node_type": "1", "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "13833f19f2be9b828a5e1880a8da5ded468ec814ecc3f62114d2b3b7a0ee4ebe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b83b8665-b20a-40cd-8635-744eb32f0865", "node_type": "1", "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. "}, "hash": "5473207d9444df845abae6660a42fe68a16b6d9a3891abb286b67740518968e2", "class_name": "RelatedNodeInfo"}}, "text": "However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. ", "start_char_idx": 184, "end_char_idx": 352, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b83b8665-b20a-40cd-8635-744eb32f0865": {"__data__": {"id_": "b83b8665-b20a-40cd-8635-744eb32f0865", "embedding": null, "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34", "node_type": "4", "metadata": {"page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "2bf06f11a004c44b8a39a4c3cb79d07f39634c2bf6c672885e84c14d4cf85a17", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "27006bda-d38e-440b-9b44-51cb0c237139", "node_type": "1", "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "5582276f90152897b280ac2aab5518c724b175b0650b319156bb96b2ccd817da", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cb949682-7cf9-433d-a818-d9095bc087fc", "node_type": "1", "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "ddcadb3af88eb197c6c175278f76f937b41893057df1593c9cf25a2b1424a804", "class_name": "RelatedNodeInfo"}}, "text": "Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. ", "start_char_idx": 352, "end_char_idx": 604, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cb949682-7cf9-433d-a818-d9095bc087fc": {"__data__": {"id_": "cb949682-7cf9-433d-a818-d9095bc087fc", "embedding": null, "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34", "node_type": "4", "metadata": {"page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "2bf06f11a004c44b8a39a4c3cb79d07f39634c2bf6c672885e84c14d4cf85a17", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b83b8665-b20a-40cd-8635-744eb32f0865", "node_type": "1", "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "hash": "d10c2a593f4f15cc9701d25c026e4363f05befda3bc13a9715b7dd5b87e38d15", "class_name": "RelatedNodeInfo"}}, "text": "Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 604, "end_char_idx": 877, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e8aaccc0-ad4a-4d97-a3cc-ede7c776cbe1": {"__data__": {"id_": "e8aaccc0-ad4a-4d97-a3cc-ede7c776cbe1", "embedding": null, "metadata": {"window": "4Contents\nIntroduction Page 2\nContents Page 4\nTeacher\u2019s notes Page 5\nBackground Page 6\nExternal links Page 8\nTasks Page 9\nSource 1 Page 11\nSource 2a Page 13\nSource 2b Page 14\nSource 2c Page 15Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "4Contents\nIntroduction Page 2\nContents Page 4\nTeacher\u2019s notes Page 5\nBackground Page 6\nExternal links Page 8\nTasks Page 9\nSource 1 Page 11\nSource 2a Page 13\nSource 2b Page 14\nSource 2c Page 15Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "4", "file_name": "slavery.pdf", "doc_id": "7a55c287-d0bf-464b-a5e8-76a17da3deb7"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7a55c287-d0bf-464b-a5e8-76a17da3deb7", "node_type": "4", "metadata": {"page_label": "4", "file_name": "slavery.pdf", "doc_id": "7a55c287-d0bf-464b-a5e8-76a17da3deb7"}, "hash": "5ec9e76633315901563f127fe97467a493e4dde09baa6c70e4738760a86a6f30", "class_name": "RelatedNodeInfo"}}, "text": "4Contents\nIntroduction Page 2\nContents Page 4\nTeacher\u2019s notes Page 5\nBackground Page 6\nExternal links Page 8\nTasks Page 9\nSource 1 Page 11\nSource 2a Page 13\nSource 2b Page 14\nSource 2c Page 15Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 0, "end_char_idx": 397, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "58e7818c-f650-401b-9c01-7d3905c2407b": {"__data__": {"id_": "58e7818c-f650-401b-9c01-7d3905c2407b", "embedding": null, "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. ", "original_text": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ddec1dd2-5542-4cf6-9516-364a188cb50c", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. ", "original_text": "This lesson offers graphic evidence of the cruelty on which enslavement was based. "}, "hash": "9e3fd4a72779587b14caf06e64969e1ea8ba8a85257fdb92a1da9130cede7fe8", "class_name": "RelatedNodeInfo"}}, "text": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n", "start_char_idx": 0, "end_char_idx": 127, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ddec1dd2-5542-4cf6-9516-364a188cb50c": {"__data__": {"id_": "ddec1dd2-5542-4cf6-9516-364a188cb50c", "embedding": null, "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. ", "original_text": "This lesson offers graphic evidence of the cruelty on which enslavement was based. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "58e7818c-f650-401b-9c01-7d3905c2407b", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. ", "original_text": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "d2cb81b295073cfaafd3f0709b330fad37359659f4fcb8f53d02ace1b991a3eb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3d634f4a-6464-4604-b2ce-c9c1644b3d6e", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n", "original_text": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. "}, "hash": "d124d9e096a675871270b04e91fa84247960fbb12eef4c9bf206d14c40dc9466", "class_name": "RelatedNodeInfo"}}, "text": "This lesson offers graphic evidence of the cruelty on which enslavement was based. ", "start_char_idx": 127, "end_char_idx": 210, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3d634f4a-6464-4604-b2ce-c9c1644b3d6e": {"__data__": {"id_": "3d634f4a-6464-4604-b2ce-c9c1644b3d6e", "embedding": null, "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n", "original_text": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ddec1dd2-5542-4cf6-9516-364a188cb50c", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. ", "original_text": "This lesson offers graphic evidence of the cruelty on which enslavement was based. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "a712d9e8a04da808da931e536fb7b645c46ad3c19f514c1437a367169d8b24c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a07eb1c6-055b-4024-b693-e46624363a24", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. ", "original_text": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. "}, "hash": "2f641b7df706b7b83d0994fbd682b9efa0370d62082ea408273bdbf3d99644e3", "class_name": "RelatedNodeInfo"}}, "text": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. ", "start_char_idx": 210, "end_char_idx": 319, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a07eb1c6-055b-4024-b693-e46624363a24": {"__data__": {"id_": "a07eb1c6-055b-4024-b693-e46624363a24", "embedding": null, "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. ", "original_text": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3d634f4a-6464-4604-b2ce-c9c1644b3d6e", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n", "original_text": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "f04a092e1241a9d14ae192314ee71fd646fe73887be88ad5371bcefe944a98c4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7b7b6905-0f25-4a92-8974-653add4ae317", "node_type": "1", "metadata": {"window": "This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. ", "original_text": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. "}, "hash": "7465ec5d9106fef2339a391cedefc493ce389c03e9adeeacba75070dcead2a6d", "class_name": "RelatedNodeInfo"}}, "text": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. ", "start_char_idx": 319, "end_char_idx": 419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7b7b6905-0f25-4a92-8974-653add4ae317": {"__data__": {"id_": "7b7b6905-0f25-4a92-8974-653add4ae317", "embedding": null, "metadata": {"window": "This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. ", "original_text": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a07eb1c6-055b-4024-b693-e46624363a24", "node_type": "1", "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. ", "original_text": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "0b1b0db02bfcb89d33ed50dc724e719826a48684035b9b2a0d97994affc98358", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e1333b08-9d0d-4c3b-a8cd-f51cb20d7314", "node_type": "1", "metadata": {"window": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. ", "original_text": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n"}, "hash": "a519d89a4a6c8f7005b8c86693f4605e03898bc11141a3cb0a38c1b5f8ce6e20", "class_name": "RelatedNodeInfo"}}, "text": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. ", "start_char_idx": 419, "end_char_idx": 560, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e1333b08-9d0d-4c3b-a8cd-f51cb20d7314": {"__data__": {"id_": "e1333b08-9d0d-4c3b-a8cd-f51cb20d7314", "embedding": null, "metadata": {"window": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. ", "original_text": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7b7b6905-0f25-4a92-8974-653add4ae317", "node_type": "1", "metadata": {"window": "This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. ", "original_text": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "884b1880557fa727c175ed0d58149fd59022b7a1c6ee8771174c0a612e8cf686", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4fe7d6bf-eb33-493b-8b7a-23f0c94b5153", "node_type": "1", "metadata": {"window": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. ", "original_text": "The story of enslavement often ends in 1833. "}, "hash": "985df538eeb818a70b0e3717b9fc9c46e1848d1ccc3562672c80455aa9b9efea", "class_name": "RelatedNodeInfo"}}, "text": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n", "start_char_idx": 560, "end_char_idx": 729, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4fe7d6bf-eb33-493b-8b7a-23f0c94b5153": {"__data__": {"id_": "4fe7d6bf-eb33-493b-8b7a-23f0c94b5153", "embedding": null, "metadata": {"window": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. ", "original_text": "The story of enslavement often ends in 1833. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e1333b08-9d0d-4c3b-a8cd-f51cb20d7314", "node_type": "1", "metadata": {"window": "The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. ", "original_text": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "503b46b484101752f7629c381c64338e9d22368b194faf99a6bb73b992284d12", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7da8e5a7-784b-4f29-84f7-8d458417c35e", "node_type": "1", "metadata": {"window": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. ", "original_text": "But that was not the end of enslavement, \neven in the Americas. "}, "hash": "243de8e1153b9849f8267ab32d25b374463833aa3c75d93d4db6f9f205233b3b", "class_name": "RelatedNodeInfo"}}, "text": "The story of enslavement often ends in 1833. ", "start_char_idx": 729, "end_char_idx": 774, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7da8e5a7-784b-4f29-84f7-8d458417c35e": {"__data__": {"id_": "7da8e5a7-784b-4f29-84f7-8d458417c35e", "embedding": null, "metadata": {"window": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. ", "original_text": "But that was not the end of enslavement, \neven in the Americas. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4fe7d6bf-eb33-493b-8b7a-23f0c94b5153", "node_type": "1", "metadata": {"window": "Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. ", "original_text": "The story of enslavement often ends in 1833. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "3d0b38232f71814b2850b23cb6705830d87aba9526e669f8fd7ba3720d60bc80", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "22465b8a-248a-4772-ad2a-fbd03e55b3bf", "node_type": "1", "metadata": {"window": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n", "original_text": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. "}, "hash": "79061b3790650060f261f4b1a38ac1caa1d00a1b3733d5372ac08041a52e823d", "class_name": "RelatedNodeInfo"}}, "text": "But that was not the end of enslavement, \neven in the Americas. ", "start_char_idx": 774, "end_char_idx": 838, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "22465b8a-248a-4772-ad2a-fbd03e55b3bf": {"__data__": {"id_": "22465b8a-248a-4772-ad2a-fbd03e55b3bf", "embedding": null, "metadata": {"window": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n", "original_text": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7da8e5a7-784b-4f29-84f7-8d458417c35e", "node_type": "1", "metadata": {"window": "From this point the whole story of enslavement \u2013 why the \nenslaved were there, who ran the plantations, why they ran away \u2013 can be explored. It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. ", "original_text": "But that was not the end of enslavement, \neven in the Americas. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "b1541a0262e899644211a5d86d48b9c7a45a6193742c2e123769b5ee176c0a50", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0ecb0ff8-e372-4eaa-8208-e819b5a1714b", "node_type": "1", "metadata": {"window": "The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. ", "original_text": "It was not abolished in Brazil until 1888. "}, "hash": "6aad05622883fb023a634f5ff1caea2c59ced6cd01d16d59261c30846b45097a", "class_name": "RelatedNodeInfo"}}, "text": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. ", "start_char_idx": 838, "end_char_idx": 940, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0ecb0ff8-e372-4eaa-8208-e819b5a1714b": {"__data__": {"id_": "0ecb0ff8-e372-4eaa-8208-e819b5a1714b", "embedding": null, "metadata": {"window": "The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. ", "original_text": "It was not abolished in Brazil until 1888. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "22465b8a-248a-4772-ad2a-fbd03e55b3bf", "node_type": "1", "metadata": {"window": "It is \nalso an important piece of evidence of the reasons why the abolition campaign proceeded \nbeyond 1807 to full abolition of the institution of enslavement in 1833.\n The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n", "original_text": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "0a46b7241d90098790c8edfac946b44631b841ec7e86b1467dcf2c788d492653", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "192d43fd-b604-4e93-accc-cc6f5d07cdf9", "node_type": "1", "metadata": {"window": "But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. ", "original_text": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. "}, "hash": "1b59b24358ba72200447ba2c35be01c31c01e2f9de944d61731e957a29f4570d", "class_name": "RelatedNodeInfo"}}, "text": "It was not abolished in Brazil until 1888. ", "start_char_idx": 940, "end_char_idx": 983, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "192d43fd-b604-4e93-accc-cc6f5d07cdf9": {"__data__": {"id_": "192d43fd-b604-4e93-accc-cc6f5d07cdf9", "embedding": null, "metadata": {"window": "But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. ", "original_text": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0ecb0ff8-e372-4eaa-8208-e819b5a1714b", "node_type": "1", "metadata": {"window": "The story of enslavement often ends in 1833. But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. ", "original_text": "It was not abolished in Brazil until 1888. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "b1dac0129ae15e9fd65bab610391fcc05630ae5bfb1fe18fa876ee1b2cbe757c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6f129632-3f87-44a7-989c-ec9c49d59bc6", "node_type": "1", "metadata": {"window": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n"}, "hash": "1608082ef6117ec6a0e02e0900c5f2cd52c2431ecc94576637fa2fe28b56c99a", "class_name": "RelatedNodeInfo"}}, "text": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. ", "start_char_idx": 983, "end_char_idx": 1064, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6f129632-3f87-44a7-989c-ec9c49d59bc6": {"__data__": {"id_": "6f129632-3f87-44a7-989c-ec9c49d59bc6", "embedding": null, "metadata": {"window": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "192d43fd-b604-4e93-accc-cc6f5d07cdf9", "node_type": "1", "metadata": {"window": "But that was not the end of enslavement, \neven in the Americas. It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. ", "original_text": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "f99ae9ad763535454cb405a40de269a64388738f2722b94b3d2e9f72fcfa352a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f4706536-f8da-4795-92dc-d4c1071a07cd", "node_type": "1", "metadata": {"window": "It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. "}, "hash": "a11b11462680d51fdc0b4728d155b768d446e91422efe80976240d96252405f1", "class_name": "RelatedNodeInfo"}}, "text": "Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n", "start_char_idx": 1064, "end_char_idx": 1225, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f4706536-f8da-4795-92dc-d4c1071a07cd": {"__data__": {"id_": "f4706536-f8da-4795-92dc-d4c1071a07cd", "embedding": null, "metadata": {"window": "It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f129632-3f87-44a7-989c-ec9c49d59bc6", "node_type": "1", "metadata": {"window": "It was not abolished in the USA until 1863, after a bloody Civil War \nhad been fought over the issue. It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "2ee50e5bd448fe74f700fa172f5b42426d6fa26466ed2de4590c958d8d7bd45d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cbaafd8e-06d1-4576-9bc1-d93dad3170b8", "node_type": "1", "metadata": {"window": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. "}, "hash": "3db308e9b0ea1bad5adb83e77b94a7be291010e2bcc27575925890c6c473f8f4", "class_name": "RelatedNodeInfo"}}, "text": "Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. ", "start_char_idx": 1225, "end_char_idx": 1622, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cbaafd8e-06d1-4576-9bc1-d93dad3170b8": {"__data__": {"id_": "cbaafd8e-06d1-4576-9bc1-d93dad3170b8", "embedding": null, "metadata": {"window": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f4706536-f8da-4795-92dc-d4c1071a07cd", "node_type": "1", "metadata": {"window": "It was not abolished in Brazil until 1888. Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "0b6d9ddbb74d42c7d39b565391950e86cb44042591c39c631c1711eb312b732d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b642f65-112a-43d4-9b14-335caa53070d", "node_type": "1", "metadata": {"window": "Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "8ddff8b95cc90678d85d1ee58ff56eea6afc26076c6c8750e7a3c4db136c2b3d", "class_name": "RelatedNodeInfo"}}, "text": "HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. ", "start_char_idx": 1622, "end_char_idx": 1749, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b642f65-112a-43d4-9b14-335caa53070d": {"__data__": {"id_": "5b642f65-112a-43d4-9b14-335caa53070d", "embedding": null, "metadata": {"window": "Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675", "node_type": "4", "metadata": {"page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cbaafd8e-06d1-4576-9bc1-d93dad3170b8", "node_type": "1", "metadata": {"window": "Britain\u2019s high moral \nline about enslavement after 1833 is not often dealt with. Sources 2a, b and c reveal just \nhow much effort Britain put into its anti-enslavement activities in several parts of the world \nright through the 19th century.\n Sources\nIllustration ZPER 34/29 \u2013 an illustration from the Illustrated London News showing a slave \nsale in South Carolina around 1856\nSource 1 CO 71/51 \u2013 these are extracts from the court records for Dominica showing \npunishments for enslaved Africans\nSources 2 a, b, c FO 84/1310 \u2013 these photographs are a set showing East African enslaved \npeople rescued by the British naval ship, HMS Daphne. HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "HMS Daphne was often used to \nrescue enslaved people from slave runners after the 1833 abolition of slavery by Great \nBritain. ", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "hash": "c4b7bd9db0cf50761559b3d4ffdeff1c4cfaaa0fa3123ef5ccba8f82e4b458d3", "class_name": "RelatedNodeInfo"}}, "text": "Enslaved people who were rescued were often taken to a nearby island where they \nwould then set up new colonies.Teacher\u2019s notesSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 1749, "end_char_idx": 1951, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65481478-3f66-4cc5-9784-6b8c54661654": {"__data__": {"id_": "65481478-3f66-4cc5-9784-6b8c54661654", "embedding": null, "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n", "original_text": "6Racism\nEnslavement is both a result and a cause of racism. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0026c333-d487-4ad1-82eb-c7465cb926b8", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n", "original_text": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n"}, "hash": "df97f960036b86720b2ca4349ed5fb37544ed35799908554c5f9e45b06a78bb7", "class_name": "RelatedNodeInfo"}}, "text": "6Racism\nEnslavement is both a result and a cause of racism. ", "start_char_idx": 0, "end_char_idx": 60, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0026c333-d487-4ad1-82eb-c7465cb926b8": {"__data__": {"id_": "0026c333-d487-4ad1-82eb-c7465cb926b8", "embedding": null, "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n", "original_text": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65481478-3f66-4cc5-9784-6b8c54661654", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n", "original_text": "6Racism\nEnslavement is both a result and a cause of racism. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "4d4975168b6a514b10e81b220953c6585d4d8d04464c82dedd9e80f3c070b1f9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65f5353c-1f93-436f-95b4-4aa3f60e03fc", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. ", "original_text": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. "}, "hash": "fc1e2785e3b8b1e5b3757a56601365402dc6a819f24f93bd1bc23c64d0342119", "class_name": "RelatedNodeInfo"}}, "text": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n", "start_char_idx": 60, "end_char_idx": 193, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65f5353c-1f93-436f-95b4-4aa3f60e03fc": {"__data__": {"id_": "65f5353c-1f93-436f-95b4-4aa3f60e03fc", "embedding": null, "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. ", "original_text": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0026c333-d487-4ad1-82eb-c7465cb926b8", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n", "original_text": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "1e96da062165bfaa6d3269cecb4b90d6873b8f11b7bffcbd611fcd8e03a222a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4436eb3c-9c54-4893-8d62-32bb42cb46ef", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. ", "original_text": "Source 2 is just another example of this. \n"}, "hash": "8c87b0fbf3c7d3c84d670aab4b0bce6fd0eb61dcaa31282c5b321ab8748eb46e", "class_name": "RelatedNodeInfo"}}, "text": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. ", "start_char_idx": 193, "end_char_idx": 418, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4436eb3c-9c54-4893-8d62-32bb42cb46ef": {"__data__": {"id_": "4436eb3c-9c54-4893-8d62-32bb42cb46ef", "embedding": null, "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. ", "original_text": "Source 2 is just another example of this. \n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65f5353c-1f93-436f-95b4-4aa3f60e03fc", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. ", "original_text": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "2a1729e07debe9a2a8e8f1ea0d16756a8a7427377a77eab2f93d322526f00cdf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e", "node_type": "1", "metadata": {"window": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. ", "original_text": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n"}, "hash": "cc540f1670f97f4ac44c5f04e337ae757fdcf38abc294127e352984746854dc0", "class_name": "RelatedNodeInfo"}}, "text": "Source 2 is just another example of this. \n", "start_char_idx": 418, "end_char_idx": 461, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e": {"__data__": {"id_": "dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e", "embedding": null, "metadata": {"window": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. ", "original_text": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4436eb3c-9c54-4893-8d62-32bb42cb46ef", "node_type": "1", "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. ", "original_text": "Source 2 is just another example of this. \n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "24bc6f9c97826aa5df8b0f8b6f7dc2891be2818d9716f46993c50c1686db2b3c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8b7b9878-5693-439a-a23e-4cc6d1493350", "node_type": "1", "metadata": {"window": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. ", "original_text": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. "}, "hash": "3d0f671420db5302861d2183da1562bb97f3edd69c931a8c7e967a3ac991c551", "class_name": "RelatedNodeInfo"}}, "text": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n", "start_char_idx": 461, "end_char_idx": 564, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b7b9878-5693-439a-a23e-4cc6d1493350": {"__data__": {"id_": "8b7b9878-5693-439a-a23e-4cc6d1493350", "embedding": null, "metadata": {"window": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. ", "original_text": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e", "node_type": "1", "metadata": {"window": "A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. ", "original_text": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "159125b8d52ecdfcd80fed49d6c4edcd7c0e0f09b31884bcc5f036ba2ce91715", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95f99dab-63db-4b78-826d-696a8ff66ab9", "node_type": "1", "metadata": {"window": "Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. ", "original_text": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. "}, "hash": "3754b2afaf3a05ebb19eb8aa1a6f96a0b3ae7283a0344fdd3e729409c0cc5624", "class_name": "RelatedNodeInfo"}}, "text": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. ", "start_char_idx": 564, "end_char_idx": 771, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95f99dab-63db-4b78-826d-696a8ff66ab9": {"__data__": {"id_": "95f99dab-63db-4b78-826d-696a8ff66ab9", "embedding": null, "metadata": {"window": "Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. ", "original_text": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8b7b9878-5693-439a-a23e-4cc6d1493350", "node_type": "1", "metadata": {"window": "It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. ", "original_text": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "447a47ccb4f049ff82ce2fed997f1d08252ea0f1aa40a1d4f1d9f4d2e07f5a10", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc64b8ee-928f-4d28-876b-fd773677e984", "node_type": "1", "metadata": {"window": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n", "original_text": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. "}, "hash": "7c456811424eae56555e13789c676259f34327c43da5313d04dd951f0f90d5f4", "class_name": "RelatedNodeInfo"}}, "text": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. ", "start_char_idx": 771, "end_char_idx": 895, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc64b8ee-928f-4d28-876b-fd773677e984": {"__data__": {"id_": "bc64b8ee-928f-4d28-876b-fd773677e984", "embedding": null, "metadata": {"window": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n", "original_text": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95f99dab-63db-4b78-826d-696a8ff66ab9", "node_type": "1", "metadata": {"window": "Source 2 is just another example of this. \n Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. ", "original_text": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "96c1737632bb8b6fa59f5ef5979e105bb7b60a1d44084659f81e8cafb4a349ca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3abde7ec-f74a-4629-b17d-67475d92da1f", "node_type": "1", "metadata": {"window": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. ", "original_text": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. "}, "hash": "761f482559e1ad4aca8936b55e05821c15651d215eb3880d1fe2b82866948e60", "class_name": "RelatedNodeInfo"}}, "text": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. ", "start_char_idx": 895, "end_char_idx": 1033, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3abde7ec-f74a-4629-b17d-67475d92da1f": {"__data__": {"id_": "3abde7ec-f74a-4629-b17d-67475d92da1f", "embedding": null, "metadata": {"window": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. ", "original_text": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc64b8ee-928f-4d28-876b-fd773677e984", "node_type": "1", "metadata": {"window": "Enslavement has also caused racism by setting up a stereotype of black people as victims in \nthe past.\n The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n", "original_text": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "a55b09f4fc8cfdd3deb3e6edc3135409ea6b65a1a3a05d62b96869ae707c3409", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7fdda8db-5310-487c-8bf5-6fa4fd27794d", "node_type": "1", "metadata": {"window": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. ", "original_text": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. "}, "hash": "8823445613a1fb60e68fbf8957531893d64fba7757d4221a9ccceef6b5a26fef", "class_name": "RelatedNodeInfo"}}, "text": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. ", "start_char_idx": 1033, "end_char_idx": 1120, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7fdda8db-5310-487c-8bf5-6fa4fd27794d": {"__data__": {"id_": "7fdda8db-5310-487c-8bf5-6fa4fd27794d", "embedding": null, "metadata": {"window": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. ", "original_text": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3abde7ec-f74a-4629-b17d-67475d92da1f", "node_type": "1", "metadata": {"window": "The triangular trade\nThe British trade in enslaved people was a three-legged voyage: from British ports to West \nAfrica, where enslaved people were bought with guns and other British-manufactured \narticles. Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. ", "original_text": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "f75a5ed56b1378087563e58af5d7ce8d6c53911c61437c903cbbb6883d980caf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9a94a297-d0f9-4898-9f65-0144aad5c26f", "node_type": "1", "metadata": {"window": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. ", "original_text": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n"}, "hash": "cb586e4d145f4ced2e99b308eeec616da4e420ba2e4a7af27ef9102da9b722ed", "class_name": "RelatedNodeInfo"}}, "text": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. ", "start_char_idx": 1120, "end_char_idx": 1238, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9a94a297-d0f9-4898-9f65-0144aad5c26f": {"__data__": {"id_": "9a94a297-d0f9-4898-9f65-0144aad5c26f", "embedding": null, "metadata": {"window": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. ", "original_text": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7fdda8db-5310-487c-8bf5-6fa4fd27794d", "node_type": "1", "metadata": {"window": "Then came the dreaded \u2018middle passage\u2019 to the Americas, with as many enslaved \npeople as possible were crammed below decks. The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. ", "original_text": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "04341d88cbb3e52481bc7df9cdcecfacdd6d2d84c99e517dac1990c89d5d32e3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07", "node_type": "1", "metadata": {"window": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. ", "original_text": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. "}, "hash": "b71bd236acdf1cac7aca657fb9a408368aab8b1eeb253a8a229f568fd783c8de", "class_name": "RelatedNodeInfo"}}, "text": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n", "start_char_idx": 1238, "end_char_idx": 1389, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07": {"__data__": {"id_": "3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07", "embedding": null, "metadata": {"window": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. ", "original_text": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9a94a297-d0f9-4898-9f65-0144aad5c26f", "node_type": "1", "metadata": {"window": "The enslaved were then sold in the \nsouthern USA, the Caribbean Islands and South America, where they were used to work \nthe plantations. Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. ", "original_text": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "6ee0229939f6684f40292cd232a0af772296ccedf281994c1f0cc6f98ecaf4b3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cadbd380-380b-4f8e-929d-4bb1555aeb54", "node_type": "1", "metadata": {"window": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. "}, "hash": "2373061852483157990fbfe1fcc7083e84ed3b6a0d90c2418f8187dc74bc9ff4", "class_name": "RelatedNodeInfo"}}, "text": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. ", "start_char_idx": 1389, "end_char_idx": 1518, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cadbd380-380b-4f8e-929d-4bb1555aeb54": {"__data__": {"id_": "cadbd380-380b-4f8e-929d-4bb1555aeb54", "embedding": null, "metadata": {"window": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07", "node_type": "1", "metadata": {"window": "Plantations were farms growing only crops that Europe wanted: tobacco, \nsugar, cotton. The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. ", "original_text": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "279d09e986cea8399a98e283d0f20fb124a678fd68a4f609603a51388b2fd620", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ecd2acb0-bb8e-4f4d-9780-e3281c776920", "node_type": "1", "metadata": {"window": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Other enslaved people worked as craftspeople, or servants. "}, "hash": "041b1efc80302c18269f5eb330ee4441ecd974ee1803b15dd4d7fcfeddc3c056", "class_name": "RelatedNodeInfo"}}, "text": "They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. ", "start_char_idx": 1518, "end_char_idx": 1599, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ecd2acb0-bb8e-4f4d-9780-e3281c776920": {"__data__": {"id_": "ecd2acb0-bb8e-4f4d-9780-e3281c776920", "embedding": null, "metadata": {"window": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Other enslaved people worked as craftspeople, or servants. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cadbd380-380b-4f8e-929d-4bb1555aeb54", "node_type": "1", "metadata": {"window": "The merchant ships would load up with these products and take them back \nto Britain on the last leg of their journey. Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "0cfaeab6ce09b8797f8a3d7d7b4f293736af3d16b14aade8efa9473e10bf21cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "078d64c7-eccc-4149-9a17-fb2926c65eb9", "node_type": "1", "metadata": {"window": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. "}, "hash": "364dada4644fb5c684cf5ce4239594cb0585e5ee3abd2b019dc9399852f4b7b5", "class_name": "RelatedNodeInfo"}}, "text": "Other enslaved people worked as craftspeople, or servants. ", "start_char_idx": 1599, "end_char_idx": 1658, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "078d64c7-eccc-4149-9a17-fb2926c65eb9": {"__data__": {"id_": "078d64c7-eccc-4149-9a17-fb2926c65eb9", "embedding": null, "metadata": {"window": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ecd2acb0-bb8e-4f4d-9780-e3281c776920", "node_type": "1", "metadata": {"window": "Profits from this trade made merchants rich as \nwell as providing the capital (money) for many of the enterprises of the early Industrial \nRevolution.\n Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Other enslaved people worked as craftspeople, or servants. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "94d9bc44c9d0cadb5d0ba9d614e76a61240a78edee7c5e4baeaa25ace424a965", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "69bc62b7-4d5c-452a-9b92-270911d4a0fe", "node_type": "1", "metadata": {"window": "They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "e05cfbde886d939e21eeafee068cdc9a9f3a3a581eab81f4e602e23ad0398045", "class_name": "RelatedNodeInfo"}}, "text": "The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. ", "start_char_idx": 1658, "end_char_idx": 1795, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "69bc62b7-4d5c-452a-9b92-270911d4a0fe": {"__data__": {"id_": "69bc62b7-4d5c-452a-9b92-270911d4a0fe", "embedding": null, "metadata": {"window": "They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b", "node_type": "4", "metadata": {"page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "078d64c7-eccc-4149-9a17-fb2926c65eb9", "node_type": "1", "metadata": {"window": "Plantation life\nThe enslaved people were worked in gangs, made up of both men and women, driven on \nby the whip of the overseer. They worked for ten to 12 hours a day in the tropical sun, for \nsix days a week. Other enslaved people worked as craftspeople, or servants. The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "The fact that \nthey could be bought or sold away from the plantation at any time made it very difficult to \nmaintain normal family life. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "hash": "5a531747e2d7950c8e338dd65775b7047a6fc55f809087c86faba7a3785519c4", "class_name": "RelatedNodeInfo"}}, "text": "Some of the \u2018runaways\u2019 listed in Source 1 may well have just \nbeen trying to visit friends or relations who had been sold to another plantation.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 1795, "end_char_idx": 2024, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "28a8185c-f125-4827-b001-61b93cd4bcc4": {"__data__": {"id_": "28a8185c-f125-4827-b001-61b93cd4bcc4", "embedding": null, "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n", "original_text": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f7144879-9b5e-4f29-bbf9-386cb07ef6fa", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. ", "original_text": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. "}, "hash": "b2f61d3022180c30ed0a590447ca7795f949e90ba31a8fa2cd76c147cc304f76", "class_name": "RelatedNodeInfo"}}, "text": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. ", "start_char_idx": 0, "end_char_idx": 101, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f7144879-9b5e-4f29-bbf9-386cb07ef6fa": {"__data__": {"id_": "f7144879-9b5e-4f29-bbf9-386cb07ef6fa", "embedding": null, "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. ", "original_text": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "28a8185c-f125-4827-b001-61b93cd4bcc4", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n", "original_text": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "104f45bc1bda3099027ea72e0875d17bca64f86a18bcfdaac8609258ef5baef7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c511a92a-648f-4757-a9ad-d7f0323a2184", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. ", "original_text": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. "}, "hash": "8d0559a621bf199cf43c053abfab7f0e9149b511de1e8cb6334c3da1de8a4656", "class_name": "RelatedNodeInfo"}}, "text": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. ", "start_char_idx": 101, "end_char_idx": 293, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c511a92a-648f-4757-a9ad-d7f0323a2184": {"__data__": {"id_": "c511a92a-648f-4757-a9ad-d7f0323a2184", "embedding": null, "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. ", "original_text": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f7144879-9b5e-4f29-bbf9-386cb07ef6fa", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. ", "original_text": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "054e56c0760f5d47df3ff1cd43aa540fdffe8a5f50217ebdcb464793855bcfab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1e866be3-ffe5-46cf-b4a3-8ac41f938b69", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. ", "original_text": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n"}, "hash": "712f5ce2bc3ab5d8113c8d02a7e396ae6dfe4706ed015265b18a79e6948ef52f", "class_name": "RelatedNodeInfo"}}, "text": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. ", "start_char_idx": 293, "end_char_idx": 388, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e866be3-ffe5-46cf-b4a3-8ac41f938b69": {"__data__": {"id_": "1e866be3-ffe5-46cf-b4a3-8ac41f938b69", "embedding": null, "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. ", "original_text": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c511a92a-648f-4757-a9ad-d7f0323a2184", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. ", "original_text": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "de850203af4c7f840a350b5cfc1763419ee11f4e90d71923c5efdfedf0fcd336", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b6af877d-2390-4bd8-a6d2-6ed4a772215d", "node_type": "1", "metadata": {"window": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n", "original_text": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. "}, "hash": "cf5440240d996c4d418478b65104e49fe86acb2d263e282f4725d97f53f409a0", "class_name": "RelatedNodeInfo"}}, "text": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n", "start_char_idx": 388, "end_char_idx": 541, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b6af877d-2390-4bd8-a6d2-6ed4a772215d": {"__data__": {"id_": "b6af877d-2390-4bd8-a6d2-6ed4a772215d", "embedding": null, "metadata": {"window": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n", "original_text": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1e866be3-ffe5-46cf-b4a3-8ac41f938b69", "node_type": "1", "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. ", "original_text": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "e1239e15ecca227949e8cb9870a237315d8b9e955c4d56ca18bfd1595f15e677", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d0b11037-1945-40ec-8ab3-47921d1fadcb", "node_type": "1", "metadata": {"window": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. ", "original_text": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. "}, "hash": "66087bb57d7cf1cbb9be5690365f2d0c142e51c604c56781cfa67de86894ff29", "class_name": "RelatedNodeInfo"}}, "text": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. ", "start_char_idx": 541, "end_char_idx": 1005, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d0b11037-1945-40ec-8ab3-47921d1fadcb": {"__data__": {"id_": "d0b11037-1945-40ec-8ab3-47921d1fadcb", "embedding": null, "metadata": {"window": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. ", "original_text": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b6af877d-2390-4bd8-a6d2-6ed4a772215d", "node_type": "1", "metadata": {"window": "From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n", "original_text": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "a79f61ff14dd91c1d5f7a31283023e9417e65c3ab5f46bc597b856a4a830eba2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7fd8f050-d87e-41cc-9c63-0003e5ee1544", "node_type": "1", "metadata": {"window": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. ", "original_text": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. "}, "hash": "e5b3f33560e9d615ea8978d56d8c7ff51a8fba982f6f3827289132a7dee7f60b", "class_name": "RelatedNodeInfo"}}, "text": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. ", "start_char_idx": 1005, "end_char_idx": 1285, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7fd8f050-d87e-41cc-9c63-0003e5ee1544": {"__data__": {"id_": "7fd8f050-d87e-41cc-9c63-0003e5ee1544", "embedding": null, "metadata": {"window": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. ", "original_text": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d0b11037-1945-40ec-8ab3-47921d1fadcb", "node_type": "1", "metadata": {"window": "Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. ", "original_text": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "45007da16eaff293e642bccc7dc7dc629e1e2e8eaca14c6778e72e60899fb76e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a77ba583-0f1d-46b2-8ff7-ae17479ce0fd", "node_type": "1", "metadata": {"window": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. ", "original_text": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n"}, "hash": "0989a905d37992f1edb06b31b5c3d4140263ec7d749581842acc659ffb4232ac", "class_name": "RelatedNodeInfo"}}, "text": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. ", "start_char_idx": 1285, "end_char_idx": 1380, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a77ba583-0f1d-46b2-8ff7-ae17479ce0fd": {"__data__": {"id_": "a77ba583-0f1d-46b2-8ff7-ae17479ce0fd", "embedding": null, "metadata": {"window": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. ", "original_text": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7fd8f050-d87e-41cc-9c63-0003e5ee1544", "node_type": "1", "metadata": {"window": "There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. ", "original_text": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "d324fc68d317231c4c7fa2adab814271fbe414cf494de240bb8489ba860109b2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "300666de-ee99-4e70-879a-f6089faafc46", "node_type": "1", "metadata": {"window": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Clearly, the campaign to abolish enslavement did not end in 1833. "}, "hash": "64a436b07da104ceb879e79cc09f6a39a3737c2e776c9b4a5bf5ec8ed9350a9a", "class_name": "RelatedNodeInfo"}}, "text": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n", "start_char_idx": 1380, "end_char_idx": 1558, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "300666de-ee99-4e70-879a-f6089faafc46": {"__data__": {"id_": "300666de-ee99-4e70-879a-f6089faafc46", "embedding": null, "metadata": {"window": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Clearly, the campaign to abolish enslavement did not end in 1833. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a77ba583-0f1d-46b2-8ff7-ae17479ce0fd", "node_type": "1", "metadata": {"window": "Abolition\nThe case against enslavement had several arguments:\n\u2022 The moral argument: enslavement is wicked, un-Christian\n\u2022 The economic argument: enslavement is expensive and inefficient\n\u2022 The legal argument: enslavement is illegal under British law\n\u2022 Problems in the plantations: enslaved people continued to resist enslavement and would \nnot be suppressed\nThe campaign to abolish enslavement was the first popular peaceful mass protest \nmovement of modern times. Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. ", "original_text": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "2d11f6f89d6d21b2daf59888afb8f2667b218817a282021a32d8407782d54951", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc29303b-07ce-4727-be27-983181f9f61e", "node_type": "1", "metadata": {"window": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. "}, "hash": "d81c2dd6d647587f432341124be0832d2f05891fce4cf08f29f979d88352564c", "class_name": "RelatedNodeInfo"}}, "text": "Clearly, the campaign to abolish enslavement did not end in 1833. ", "start_char_idx": 1558, "end_char_idx": 1624, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc29303b-07ce-4727-be27-983181f9f61e": {"__data__": {"id_": "fc29303b-07ce-4727-be27-983181f9f61e", "embedding": null, "metadata": {"window": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "300666de-ee99-4e70-879a-f6089faafc46", "node_type": "1", "metadata": {"window": "Leading white abolitionists were Granville Sharpe, who helped \nblack people fight test cases in the courts; Thomas Clarkson, who collected evidence of \nthe cruelty of the enslavement trade from all over Britain; and William Wilberforce, who \nfought for legislation in Parliament. They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Clearly, the campaign to abolish enslavement did not end in 1833. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "9aa98d54c47bb3556d4dc5205581df26d03acc4a7feffa37353a766bde529c7d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f8cbb712-32b8-4562-bde4-fb725b3d9205", "node_type": "1", "metadata": {"window": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. "}, "hash": "4bbe005990abec6c947843fc3f72d910e9102a9c094ab8f3dd82609f3dc9b52c", "class_name": "RelatedNodeInfo"}}, "text": "Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. ", "start_char_idx": 1624, "end_char_idx": 1823, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f8cbb712-32b8-4562-bde4-fb725b3d9205": {"__data__": {"id_": "f8cbb712-32b8-4562-bde4-fb725b3d9205", "embedding": null, "metadata": {"window": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc29303b-07ce-4727-be27-983181f9f61e", "node_type": "1", "metadata": {"window": "They worked with black abolitionist campaigners, such \nas Olaudah Equiano and Ottobah Cuguano. Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "f7f8bde444aba95be10ca69c90f4b0214c484c2317524896b0bef95c12182800", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5d9e999c-18a0-4cb2-9926-50c308eb129b", "node_type": "1", "metadata": {"window": "Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "3ae701af5ac670fae5c63f9d051dfd349188e4886c44203d7aa2074e02c404f7", "class_name": "RelatedNodeInfo"}}, "text": "Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. ", "start_char_idx": 1823, "end_char_idx": 2010, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5d9e999c-18a0-4cb2-9926-50c308eb129b": {"__data__": {"id_": "5d9e999c-18a0-4cb2-9926-50c308eb129b", "embedding": null, "metadata": {"window": "Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05", "node_type": "4", "metadata": {"page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8cbb712-32b8-4562-bde4-fb725b3d9205", "node_type": "1", "metadata": {"window": "Mary Prince, who had been enslaved for part \nof her life, wrote an important book about her experiences which helped to influence the \neventual abolition of enslavement in 1833.\n Clearly, the campaign to abolish enslavement did not end in 1833. Plantation owners still \nused forced labour in the form of indentured workers (a worker who works for a fixed term \nfor their transportation, board and lodgings) particularly on tobacco plantations. Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Being an \nindentured worker meant, in theory, that you should be treated fairly and that although you \nweren\u2019t paid for your labour, you would be given proper food and somewhere to stay. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "hash": "f971c335a9403059a6bb9f40bb5d1301509f12d556007bb38cd8933f75ebed25", "class_name": "RelatedNodeInfo"}}, "text": "In \nactual fact, indentured workers were often treated no better than enslaved workers, with \nbeatings, and even death, a common factor.BackgroundSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 2010, "end_char_idx": 2231, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a56e9c7d-5513-45d6-a642-be7af0c2e85c": {"__data__": {"id_": "a56e9c7d-5513-45d6-a642-be7af0c2e85c", "embedding": null, "metadata": {"window": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n", "page_label": "8", "file_name": "slavery.pdf", "doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb", "node_type": "4", "metadata": {"page_label": "8", "file_name": "slavery.pdf", "doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "hash": "d0844cb03d654f72009a5fffea5cb78b8e27bdc71d759cb8424bc8c68f4562ce", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6a803b57-49fc-48ca-9393-972328ee4732", "node_type": "1", "metadata": {"window": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "28ac4a6de129cef5b355ffb751ca6d838e99afbd94464ae660bbcadb78024169", "class_name": "RelatedNodeInfo"}}, "text": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n", "start_char_idx": 0, "end_char_idx": 88, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6a803b57-49fc-48ca-9393-972328ee4732": {"__data__": {"id_": "6a803b57-49fc-48ca-9393-972328ee4732", "embedding": null, "metadata": {"window": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "8", "file_name": "slavery.pdf", "doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb", "node_type": "4", "metadata": {"page_label": "8", "file_name": "slavery.pdf", "doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "hash": "d0844cb03d654f72009a5fffea5cb78b8e27bdc71d759cb8424bc8c68f4562ce", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a56e9c7d-5513-45d6-a642-be7af0c2e85c", "node_type": "1", "metadata": {"window": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n", "page_label": "8", "file_name": "slavery.pdf", "doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "hash": "0449b10d916f727f89549b3208a5ca5858887a37433cfaea06766f435ada902d", "class_name": "RelatedNodeInfo"}}, "text": "International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 88, "end_char_idx": 673, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "02ca96c4-6d09-4dc8-92cc-b544eedf62f1": {"__data__": {"id_": "02ca96c4-6d09-4dc8-92cc-b544eedf62f1", "embedding": null, "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. ", "original_text": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ed46bb94-ddc0-496e-b660-7dc1414efb5a", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? ", "original_text": "Read Source 1. "}, "hash": "54947449227b4f193eb91919c7be32ff1a3193c2db3837c260f99194b9a5eb7b", "class_name": "RelatedNodeInfo"}}, "text": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. ", "start_char_idx": 0, "end_char_idx": 71, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ed46bb94-ddc0-496e-b660-7dc1414efb5a": {"__data__": {"id_": "ed46bb94-ddc0-496e-b660-7dc1414efb5a", "embedding": null, "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? ", "original_text": "Read Source 1. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "02ca96c4-6d09-4dc8-92cc-b544eedf62f1", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. ", "original_text": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "f48ee1f06dc0463c9c65f856b468b4d54f1ba6ecc5b5bab8d22ab1152a9a830d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2bad9597-31ad-4288-9dce-b385ed1aac1a", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n", "original_text": "Look at the names on the document.\n"}, "hash": "0a1879b7955d65f8155af9a8c119dfffaff6d882ccab7a83b9ec91754d80a67c", "class_name": "RelatedNodeInfo"}}, "text": "Read Source 1. ", "start_char_idx": 71, "end_char_idx": 86, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2bad9597-31ad-4288-9dce-b385ed1aac1a": {"__data__": {"id_": "2bad9597-31ad-4288-9dce-b385ed1aac1a", "embedding": null, "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n", "original_text": "Look at the names on the document.\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed46bb94-ddc0-496e-b660-7dc1414efb5a", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? ", "original_text": "Read Source 1. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "3520005de673b8a96171d610cc9fa9c0751a273987e53743fa8e790d419bcdae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ded3bcf-f8a8-461b-a4b9-9a85d82797f3", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? ", "original_text": "\u2022 These enslaved people originated in Africa. "}, "hash": "ed567a8ef49560ec90e1b04aedc53cf547d6d10ce64b1ed89248c28785aee46b", "class_name": "RelatedNodeInfo"}}, "text": "Look at the names on the document.\n", "start_char_idx": 86, "end_char_idx": 121, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ded3bcf-f8a8-461b-a4b9-9a85d82797f3": {"__data__": {"id_": "8ded3bcf-f8a8-461b-a4b9-9a85d82797f3", "embedding": null, "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? ", "original_text": "\u2022 These enslaved people originated in Africa. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2bad9597-31ad-4288-9dce-b385ed1aac1a", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n", "original_text": "Look at the names on the document.\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "587bf1634e63f7fc3d5eb814d57d5d2708cdea7ebcd7c95f7dc5251d7b701533", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3b9a25ca-ad51-446a-b03e-3ebd0d40242d", "node_type": "1", "metadata": {"window": "Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n", "original_text": "Are these African names? "}, "hash": "ca6dc04462b8f8c1dbed8fa36dcfeb8d50fd0bd1f83b5c9b25d647a16390b334", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 These enslaved people originated in Africa. ", "start_char_idx": 121, "end_char_idx": 167, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3b9a25ca-ad51-446a-b03e-3ebd0d40242d": {"__data__": {"id_": "3b9a25ca-ad51-446a-b03e-3ebd0d40242d", "embedding": null, "metadata": {"window": "Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n", "original_text": "Are these African names? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ded3bcf-f8a8-461b-a4b9-9a85d82797f3", "node_type": "1", "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? ", "original_text": "\u2022 These enslaved people originated in Africa. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "2337fa9be7ee516f901f606a1cc988606b85ebf1fa57313e157d657d328b3ca9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "58185f9d-bf2a-443c-bc76-f5bfe06ec79a", "node_type": "1", "metadata": {"window": "Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? ", "original_text": "Who named them?\n"}, "hash": "02444316966a6f04fee342c0e4fed13d7f72c54ddce8557109dc7277d4803eb8", "class_name": "RelatedNodeInfo"}}, "text": "Are these African names? ", "start_char_idx": 167, "end_char_idx": 192, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "58185f9d-bf2a-443c-bc76-f5bfe06ec79a": {"__data__": {"id_": "58185f9d-bf2a-443c-bc76-f5bfe06ec79a", "embedding": null, "metadata": {"window": "Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? ", "original_text": "Who named them?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3b9a25ca-ad51-446a-b03e-3ebd0d40242d", "node_type": "1", "metadata": {"window": "Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n", "original_text": "Are these African names? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "e72e40696abefb5cc68236adabd3262125fd8b061b71af4687addf9100b1a024", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e2622ce4-abb8-4d42-86d9-966ce0b9ca15", "node_type": "1", "metadata": {"window": "\u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n", "original_text": "\u2022 How many names do the enslaved Africans have? "}, "hash": "ca0eb6150eb0f43e03e9d927137cab6f50aa1a75fcdf16ded2383eb1215c77c2", "class_name": "RelatedNodeInfo"}}, "text": "Who named them?\n", "start_char_idx": 192, "end_char_idx": 208, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e2622ce4-abb8-4d42-86d9-966ce0b9ca15": {"__data__": {"id_": "e2622ce4-abb8-4d42-86d9-966ce0b9ca15", "embedding": null, "metadata": {"window": "\u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n", "original_text": "\u2022 How many names do the enslaved Africans have? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "58185f9d-bf2a-443c-bc76-f5bfe06ec79a", "node_type": "1", "metadata": {"window": "Look at the names on the document.\n \u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? ", "original_text": "Who named them?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "c72327d1a9f48578cbae4496b100e1c93dbe352871149ad35dd81d560ac6cfca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9949ac58-0bff-4791-bb37-9b42df6977db", "node_type": "1", "metadata": {"window": "Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. ", "original_text": "Why weren\u2019t they given surnames?\n"}, "hash": "968c3bd424a2b2e36845370a86ee2fc2eb58b889ccc3b7f7fd09383e000c0804", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 How many names do the enslaved Africans have? ", "start_char_idx": 208, "end_char_idx": 256, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9949ac58-0bff-4791-bb37-9b42df6977db": {"__data__": {"id_": "9949ac58-0bff-4791-bb37-9b42df6977db", "embedding": null, "metadata": {"window": "Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. ", "original_text": "Why weren\u2019t they given surnames?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2622ce4-abb8-4d42-86d9-966ce0b9ca15", "node_type": "1", "metadata": {"window": "\u2022 These enslaved people originated in Africa. Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n", "original_text": "\u2022 How many names do the enslaved Africans have? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "f151f798f494ffbb686539bd9c445289f2cde00f2408abe5d4ec94f6f9ceebe9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5214c1b3-9682-48b2-a25e-f4d5879a1a65", "node_type": "1", "metadata": {"window": "Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n", "original_text": "\u2022 Which enslaved people are male and which are female? "}, "hash": "3303c0b1df8245470724d26f903b56a3b137cd9426f5128c45835e90d13a5b07", "class_name": "RelatedNodeInfo"}}, "text": "Why weren\u2019t they given surnames?\n", "start_char_idx": 256, "end_char_idx": 289, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5214c1b3-9682-48b2-a25e-f4d5879a1a65": {"__data__": {"id_": "5214c1b3-9682-48b2-a25e-f4d5879a1a65", "embedding": null, "metadata": {"window": "Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n", "original_text": "\u2022 Which enslaved people are male and which are female? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9949ac58-0bff-4791-bb37-9b42df6977db", "node_type": "1", "metadata": {"window": "Are these African names? Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. ", "original_text": "Why weren\u2019t they given surnames?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "02b8310f1f20399b3e821b62dff80bd67b175b2f2460f7546f1d92a83c9e072e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9e2d2d43-625d-4106-8d00-c47da6bd20c3", "node_type": "1", "metadata": {"window": "\u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. ", "original_text": "Does their gender make any \ndifference to how they were treated by the court?\n"}, "hash": "1ddf4c94b0d0321094c862e3e2d4f81e4ad43d48d4b964eb8019a8a59b7231ed", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 Which enslaved people are male and which are female? ", "start_char_idx": 289, "end_char_idx": 344, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e2d2d43-625d-4106-8d00-c47da6bd20c3": {"__data__": {"id_": "9e2d2d43-625d-4106-8d00-c47da6bd20c3", "embedding": null, "metadata": {"window": "\u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. ", "original_text": "Does their gender make any \ndifference to how they were treated by the court?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5214c1b3-9682-48b2-a25e-f4d5879a1a65", "node_type": "1", "metadata": {"window": "Who named them?\n \u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n", "original_text": "\u2022 Which enslaved people are male and which are female? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "1142ad5166987611f8e1fa281cadea4000ebc933dcb16da176301902cc77039c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d6b690e6-46f0-492f-8f4b-3a7a80d07138", "node_type": "1", "metadata": {"window": "Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n", "original_text": "\u2022 Dominica had been a French possession until 1763. "}, "hash": "170d45fa8b57ba5a5f8f3f050611ecf897cf5c0b647a2e57d2912937866a8106", "class_name": "RelatedNodeInfo"}}, "text": "Does their gender make any \ndifference to how they were treated by the court?\n", "start_char_idx": 344, "end_char_idx": 422, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d6b690e6-46f0-492f-8f4b-3a7a80d07138": {"__data__": {"id_": "d6b690e6-46f0-492f-8f4b-3a7a80d07138", "embedding": null, "metadata": {"window": "Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n", "original_text": "\u2022 Dominica had been a French possession until 1763. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9e2d2d43-625d-4106-8d00-c47da6bd20c3", "node_type": "1", "metadata": {"window": "\u2022 How many names do the enslaved Africans have? Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. ", "original_text": "Does their gender make any \ndifference to how they were treated by the court?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "aaad65272a514d7bff22172d73445a982ae0ad9864ab2679ef90f6afc9dbe831", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "df93033a-8dd3-49f7-b348-763d0b48e612", "node_type": "1", "metadata": {"window": "\u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n", "original_text": "Which of the slaves have French \nnames?\n"}, "hash": "1d54a66caae242ea75907be94d3b8d25bb58fde5b7f1ff83ec5ef01a12912461", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 Dominica had been a French possession until 1763. ", "start_char_idx": 422, "end_char_idx": 474, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "df93033a-8dd3-49f7-b348-763d0b48e612": {"__data__": {"id_": "df93033a-8dd3-49f7-b348-763d0b48e612", "embedding": null, "metadata": {"window": "\u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n", "original_text": "Which of the slaves have French \nnames?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d6b690e6-46f0-492f-8f4b-3a7a80d07138", "node_type": "1", "metadata": {"window": "Why weren\u2019t they given surnames?\n \u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n", "original_text": "\u2022 Dominica had been a French possession until 1763. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "f395a689be3e265b51743fd49d88e0c11c5350d62cd7b6900d3deaa6e2f84bc2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5a860cda-b415-4d83-aa50-ae5b9e63b858", "node_type": "1", "metadata": {"window": "Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. ", "original_text": "2. "}, "hash": "2e040782f756028758a03461ec3b68bd1c34d72fcd47f7c0f4a1228c8c1e1746", "class_name": "RelatedNodeInfo"}}, "text": "Which of the slaves have French \nnames?\n", "start_char_idx": 474, "end_char_idx": 514, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5a860cda-b415-4d83-aa50-ae5b9e63b858": {"__data__": {"id_": "5a860cda-b415-4d83-aa50-ae5b9e63b858", "embedding": null, "metadata": {"window": "Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. ", "original_text": "2. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "df93033a-8dd3-49f7-b348-763d0b48e612", "node_type": "1", "metadata": {"window": "\u2022 Which enslaved people are male and which are female? Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n", "original_text": "Which of the slaves have French \nnames?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "5a716a42b0f76aef6a5366348e1afa19b01fa619f07de752312190d4744ee7d9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "01fe664f-3b2a-46d1-b8bb-7d45779f69f6", "node_type": "1", "metadata": {"window": "\u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. ", "original_text": "Now look at the charges against the enslaved Africans in Source 1.\n"}, "hash": "6fdaadce458b96d4b0b0bf2a0d30ebfacef4b73a7dbeeb3337992a1446a369dd", "class_name": "RelatedNodeInfo"}}, "text": "2. ", "start_char_idx": 514, "end_char_idx": 517, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "01fe664f-3b2a-46d1-b8bb-7d45779f69f6": {"__data__": {"id_": "01fe664f-3b2a-46d1-b8bb-7d45779f69f6", "embedding": null, "metadata": {"window": "\u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. ", "original_text": "Now look at the charges against the enslaved Africans in Source 1.\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5a860cda-b415-4d83-aa50-ae5b9e63b858", "node_type": "1", "metadata": {"window": "Does their gender make any \ndifference to how they were treated by the court?\n \u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. ", "original_text": "2. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "a34ef25a60305e0212ace521276ee46150747400b1d83d8ceacbd81c7a51864b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bcdc7243-9dd5-445b-b2b7-358c669c8893", "node_type": "1", "metadata": {"window": "Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n", "original_text": "\u2022 What have most of these enslaved people been charged with?\n"}, "hash": "7c95afd1f51611c8f1679d783ddf701f79e314cdfefb2a69e4ab8ad9bdb4e40c", "class_name": "RelatedNodeInfo"}}, "text": "Now look at the charges against the enslaved Africans in Source 1.\n", "start_char_idx": 517, "end_char_idx": 584, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bcdc7243-9dd5-445b-b2b7-358c669c8893": {"__data__": {"id_": "bcdc7243-9dd5-445b-b2b7-358c669c8893", "embedding": null, "metadata": {"window": "Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n", "original_text": "\u2022 What have most of these enslaved people been charged with?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "01fe664f-3b2a-46d1-b8bb-7d45779f69f6", "node_type": "1", "metadata": {"window": "\u2022 Dominica had been a French possession until 1763. Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. ", "original_text": "Now look at the charges against the enslaved Africans in Source 1.\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "b0b670cecd0e66d73d1c25dd74b8a1533da4d9bfa191d8fe399d432e2ca61746", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "966263e0-1f7b-4cc1-8815-c3f548f11def", "node_type": "1", "metadata": {"window": "2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. ", "original_text": "\u2022 Dominica is quite a small island. "}, "hash": "ba22591b56c16eeccc0f7b84f9503b43f9426024f719629491b876605014853b", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 What have most of these enslaved people been charged with?\n", "start_char_idx": 584, "end_char_idx": 645, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "966263e0-1f7b-4cc1-8815-c3f548f11def": {"__data__": {"id_": "966263e0-1f7b-4cc1-8815-c3f548f11def", "embedding": null, "metadata": {"window": "2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. ", "original_text": "\u2022 Dominica is quite a small island. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bcdc7243-9dd5-445b-b2b7-358c669c8893", "node_type": "1", "metadata": {"window": "Which of the slaves have French \nnames?\n 2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n", "original_text": "\u2022 What have most of these enslaved people been charged with?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "8027f99d45c14e41bcac62bd186097937ff411aff05c9e5a7033cfd0d58e665a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "df0da444-94fc-4ca2-99eb-20c90d355490", "node_type": "1", "metadata": {"window": "Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n", "original_text": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. "}, "hash": "9936f2fa602f3bd3c0df1d80082fd5cbdd3be5261ad3140e51a62987b90599f1", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 Dominica is quite a small island. ", "start_char_idx": 645, "end_char_idx": 681, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "df0da444-94fc-4ca2-99eb-20c90d355490": {"__data__": {"id_": "df0da444-94fc-4ca2-99eb-20c90d355490", "embedding": null, "metadata": {"window": "Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n", "original_text": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "966263e0-1f7b-4cc1-8815-c3f548f11def", "node_type": "1", "metadata": {"window": "2. Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. ", "original_text": "\u2022 Dominica is quite a small island. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "077d87a5950496446f7a3dc9e332f37951def6206cac4f5c8a6755315b4298f3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "adb544e2-adb7-4b83-a8aa-cefb1f2db533", "node_type": "1", "metadata": {"window": "\u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? ", "original_text": "What does this document tell you about \nthe scale of resistance by runaways?\n"}, "hash": "b87f0064b1940c3aff0c252ea2a88f5ff6b3bd3f2e05dc0f42f2ce16d3918019", "class_name": "RelatedNodeInfo"}}, "text": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. ", "start_char_idx": 681, "end_char_idx": 786, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "adb544e2-adb7-4b83-a8aa-cefb1f2db533": {"__data__": {"id_": "adb544e2-adb7-4b83-a8aa-cefb1f2db533", "embedding": null, "metadata": {"window": "\u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? ", "original_text": "What does this document tell you about \nthe scale of resistance by runaways?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "df0da444-94fc-4ca2-99eb-20c90d355490", "node_type": "1", "metadata": {"window": "Now look at the charges against the enslaved Africans in Source 1.\n \u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n", "original_text": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "de32de040b882f95a1f8f9bb99e567aaaaecb5dd9a4da0bd18550073635eaba8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "100c5e3f-39bf-4e91-8a77-6be51ab4a2a1", "node_type": "1", "metadata": {"window": "\u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? ", "original_text": "3. "}, "hash": "020cfdfbb27c7106fa07eac971d840d1022185c126a7c52f5aeb1fc97a3a13b7", "class_name": "RelatedNodeInfo"}}, "text": "What does this document tell you about \nthe scale of resistance by runaways?\n", "start_char_idx": 786, "end_char_idx": 863, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "100c5e3f-39bf-4e91-8a77-6be51ab4a2a1": {"__data__": {"id_": "100c5e3f-39bf-4e91-8a77-6be51ab4a2a1", "embedding": null, "metadata": {"window": "\u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? ", "original_text": "3. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "adb544e2-adb7-4b83-a8aa-cefb1f2db533", "node_type": "1", "metadata": {"window": "\u2022 What have most of these enslaved people been charged with?\n \u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? ", "original_text": "What does this document tell you about \nthe scale of resistance by runaways?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "82475dd700d83ce17f557a46295b6e56a8d852866f9f2687ec607653ad4e4a28", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5f79533d-d369-490f-9016-5149f141ebc5", "node_type": "1", "metadata": {"window": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n", "original_text": "There are 13 enslaved Africans listed in the document.\n"}, "hash": "7df6a39afadabdff6cd1166c8037bd522d5efad78867efca2643e3daebf6b67a", "class_name": "RelatedNodeInfo"}}, "text": "3. ", "start_char_idx": 471, "end_char_idx": 474, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5f79533d-d369-490f-9016-5149f141ebc5": {"__data__": {"id_": "5f79533d-d369-490f-9016-5149f141ebc5", "embedding": null, "metadata": {"window": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n", "original_text": "There are 13 enslaved Africans listed in the document.\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "100c5e3f-39bf-4e91-8a77-6be51ab4a2a1", "node_type": "1", "metadata": {"window": "\u2022 Dominica is quite a small island. When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? ", "original_text": "3. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "2dc64656476e178f7db7fa5d7e62caa387d76bcd116140c80f3a1daf43b69da4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05c844be-7464-4e7c-913c-5ffbce72216d", "node_type": "1", "metadata": {"window": "What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n", "original_text": "\u2022 How many were hanged? "}, "hash": "bbfdc254c5fd3260b7ca63b7a68cab2fefb4a63cd0b39d42f258737d02e6bff6", "class_name": "RelatedNodeInfo"}}, "text": "There are 13 enslaved Africans listed in the document.\n", "start_char_idx": 866, "end_char_idx": 921, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05c844be-7464-4e7c-913c-5ffbce72216d": {"__data__": {"id_": "05c844be-7464-4e7c-913c-5ffbce72216d", "embedding": null, "metadata": {"window": "What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n", "original_text": "\u2022 How many were hanged? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5f79533d-d369-490f-9016-5149f141ebc5", "node_type": "1", "metadata": {"window": "When the first census was carried out there in 1834 the \npopulation (whites and blacks) was only 14,000. What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n", "original_text": "There are 13 enslaved Africans listed in the document.\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "1181596d1f4d2057b795f0ec44d98eaa634d13620a497314e4ffd154b42ba939", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e1e2da1d-700d-405d-8f91-cf85a3d0298c", "node_type": "1", "metadata": {"window": "3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n", "original_text": "How many whipped? "}, "hash": "160a0ddb35b86c0a4db3de5aaf9c0d23ad28f2c56d48c7cda7cf41bb256b2662", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 How many were hanged? ", "start_char_idx": 921, "end_char_idx": 945, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e1e2da1d-700d-405d-8f91-cf85a3d0298c": {"__data__": {"id_": "e1e2da1d-700d-405d-8f91-cf85a3d0298c", "embedding": null, "metadata": {"window": "3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n", "original_text": "How many whipped? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05c844be-7464-4e7c-913c-5ffbce72216d", "node_type": "1", "metadata": {"window": "What does this document tell you about \nthe scale of resistance by runaways?\n 3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n", "original_text": "\u2022 How many were hanged? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "886fb8bb1a8eecd36bedc19933c8a6199d723a1e7ca9ee455a8b873faccd4db1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "77272b59-5423-4d64-9966-838372f1baf0", "node_type": "1", "metadata": {"window": "There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n", "original_text": "How many discharged?\n"}, "hash": "cba7e6e025db5422886ea0037987140ce8ebb02b9054d7e0df558ebd97cf548f", "class_name": "RelatedNodeInfo"}}, "text": "How many whipped? ", "start_char_idx": 945, "end_char_idx": 963, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "77272b59-5423-4d64-9966-838372f1baf0": {"__data__": {"id_": "77272b59-5423-4d64-9966-838372f1baf0", "embedding": null, "metadata": {"window": "There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n", "original_text": "How many discharged?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e1e2da1d-700d-405d-8f91-cf85a3d0298c", "node_type": "1", "metadata": {"window": "3. There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n", "original_text": "How many whipped? ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "ee68b11193f2f7434a0697437596d4dbec51e39fba4353b677a1f8bbc24f0c38", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2e3ae5c2-1359-477f-8d03-f94011102462", "node_type": "1", "metadata": {"window": "\u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n", "original_text": "\u2022 What happened to Pierre (28 January)?\n"}, "hash": "b07e9ad2323c39397a85edbcd08d9892a47f1c9e176a589b4134229f12bb18f5", "class_name": "RelatedNodeInfo"}}, "text": "How many discharged?\n", "start_char_idx": 963, "end_char_idx": 984, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2e3ae5c2-1359-477f-8d03-f94011102462": {"__data__": {"id_": "2e3ae5c2-1359-477f-8d03-f94011102462", "embedding": null, "metadata": {"window": "\u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n", "original_text": "\u2022 What happened to Pierre (28 January)?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "77272b59-5423-4d64-9966-838372f1baf0", "node_type": "1", "metadata": {"window": "There are 13 enslaved Africans listed in the document.\n \u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n", "original_text": "How many discharged?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "108abe8e63ef8c042b1b536c75df39ad10edbebed6313672560b4e19d62b9948", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e2638c82-3b0f-4b13-bb08-7dda091f3742", "node_type": "1", "metadata": {"window": "How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. ", "original_text": "\u2022 Why do you think the sentences handed out were so ferocious?\n"}, "hash": "16a10faba9aa1ec69c1d1144676f00a651f89c606227b0de1b2831bc2b700941", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 What happened to Pierre (28 January)?\n", "start_char_idx": 984, "end_char_idx": 1024, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e2638c82-3b0f-4b13-bb08-7dda091f3742": {"__data__": {"id_": "e2638c82-3b0f-4b13-bb08-7dda091f3742", "embedding": null, "metadata": {"window": "How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. ", "original_text": "\u2022 Why do you think the sentences handed out were so ferocious?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2e3ae5c2-1359-477f-8d03-f94011102462", "node_type": "1", "metadata": {"window": "\u2022 How many were hanged? How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n", "original_text": "\u2022 What happened to Pierre (28 January)?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "b822c488070552c772382202f987220386bc64b80f1310291b30dfb9302c0394", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "490925cf-dc04-479d-9867-e2198bb474a1", "node_type": "1", "metadata": {"window": "How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n"}, "hash": "8982c922402c0c29def8fc22515e2ad5bc39599cafcb1ada97cb285ba0276747", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 Why do you think the sentences handed out were so ferocious?\n", "start_char_idx": 1024, "end_char_idx": 1087, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "490925cf-dc04-479d-9867-e2198bb474a1": {"__data__": {"id_": "490925cf-dc04-479d-9867-e2198bb474a1", "embedding": null, "metadata": {"window": "How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2638c82-3b0f-4b13-bb08-7dda091f3742", "node_type": "1", "metadata": {"window": "How many whipped? How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. ", "original_text": "\u2022 Why do you think the sentences handed out were so ferocious?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "2cc36db796a77fc17e6d3365a82a138f007432d538b3ad309a823def57fe4556", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b33fb72e-9070-4eae-a7b0-c567c9f6ea22", "node_type": "1", "metadata": {"window": "\u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 What would you say about it if you were a defender of slavery?\n"}, "hash": "3d4de57c4d55110abc637bfd393ae865ac82045f485c728bf799d9e71c5639f1", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n", "start_char_idx": 1087, "end_char_idx": 1208, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b33fb72e-9070-4eae-a7b0-c567c9f6ea22": {"__data__": {"id_": "b33fb72e-9070-4eae-a7b0-c567c9f6ea22", "embedding": null, "metadata": {"window": "\u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 What would you say about it if you were a defender of slavery?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "490925cf-dc04-479d-9867-e2198bb474a1", "node_type": "1", "metadata": {"window": "How many discharged?\n \u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "7c60974c896afbed455d40151375b873520ee1577b9e2a9e9d56773e941c8f82", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "49b8caf2-6a12-493b-ad4c-0f93bcd226dd", "node_type": "1", "metadata": {"window": "\u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "4. "}, "hash": "a77c25274dbf263f845bdda761d30a9a68cab7dff05646ae02ad6897306c377c", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 What would you say about it if you were a defender of slavery?\n", "start_char_idx": 1208, "end_char_idx": 1273, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "49b8caf2-6a12-493b-ad4c-0f93bcd226dd": {"__data__": {"id_": "49b8caf2-6a12-493b-ad4c-0f93bcd226dd", "embedding": null, "metadata": {"window": "\u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "4. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b33fb72e-9070-4eae-a7b0-c567c9f6ea22", "node_type": "1", "metadata": {"window": "\u2022 What happened to Pierre (28 January)?\n \u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 What would you say about it if you were a defender of slavery?\n", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "329562f538de533ac04930a0491a1141cbe7f9c0f8b9c6be2fe3b9eebefb67ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95c6c4a4-fa11-42d8-9f26-8a79039a5c52", "node_type": "1", "metadata": {"window": "\u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "1096b4d01be951ef46592c703b15c34bf3c3ff03b11b14cafaa9463df31d9794", "class_name": "RelatedNodeInfo"}}, "text": "4. ", "start_char_idx": 1273, "end_char_idx": 1276, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95c6c4a4-fa11-42d8-9f26-8a79039a5c52": {"__data__": {"id_": "95c6c4a4-fa11-42d8-9f26-8a79039a5c52", "embedding": null, "metadata": {"window": "\u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1", "node_type": "4", "metadata": {"page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "49b8caf2-6a12-493b-ad4c-0f93bcd226dd", "node_type": "1", "metadata": {"window": "\u2022 Why do you think the sentences handed out were so ferocious?\n \u2022 What would you say about this document if you were a British abolitionist working for \nthe total abolition of slavery?\n \u2022 What would you say about it if you were a defender of slavery?\n 4. Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "4. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "hash": "a08acd50b4a9337bf0ce4e1c3967ceff910e773626c4c5321f5514d57ba48476", "class_name": "RelatedNodeInfo"}}, "text": "Look at Source 2a, b and c.Tasks\n1 https://www.youtube.com/watch?v=UzZb5rMvy4QSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 1276, "end_char_idx": 1429, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7bd2d852-2912-49ec-a0a2-20b8af746cd7": {"__data__": {"id_": "7bd2d852-2912-49ec-a0a2-20b8af746cd7", "embedding": null, "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n", "original_text": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. ", "original_text": "These \nphotographs were taken about 1868, off the east coast of Africa. "}, "hash": "afab1e21efa4f8be6d2e92883584fba7165c0bd29d8d24b1c6ad761892fa5c1c", "class_name": "RelatedNodeInfo"}}, "text": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. ", "start_char_idx": 0, "end_char_idx": 165, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197": {"__data__": {"id_": "ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197", "embedding": null, "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. ", "original_text": "These \nphotographs were taken about 1868, off the east coast of Africa. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7bd2d852-2912-49ec-a0a2-20b8af746cd7", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n", "original_text": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "18e8e98407c8f16e6aaa334e101951163ad97d3efe49b41269a3b78b2e61809f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "611a01a0-1846-4956-afa8-1721c7e159c6", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. ", "original_text": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. "}, "hash": "5fa70f93ca02c5d5bd609a1a76847b68e9b0cdf6edd573a07f6119987b100d59", "class_name": "RelatedNodeInfo"}}, "text": "These \nphotographs were taken about 1868, off the east coast of Africa. ", "start_char_idx": 165, "end_char_idx": 237, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "611a01a0-1846-4956-afa8-1721c7e159c6": {"__data__": {"id_": "611a01a0-1846-4956-afa8-1721c7e159c6", "embedding": null, "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. ", "original_text": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. ", "original_text": "These \nphotographs were taken about 1868, off the east coast of Africa. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "3eb3ef05a00318bb96c797a29ac09dc016034ae41349931ff24dbd7066420b02", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dc6ba06b-d8da-41cc-9bfe-2278eea4e56a", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n", "original_text": "Zanzibar did not abolish slavery until 1897.\n"}, "hash": "a19c4697f94cfda3b957f11f86109203d2a826a9a6bc0d42e9ac3bd74ecfcb89", "class_name": "RelatedNodeInfo"}}, "text": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. ", "start_char_idx": 237, "end_char_idx": 368, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dc6ba06b-d8da-41cc-9bfe-2278eea4e56a": {"__data__": {"id_": "dc6ba06b-d8da-41cc-9bfe-2278eea4e56a", "embedding": null, "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n", "original_text": "Zanzibar did not abolish slavery until 1897.\n", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "611a01a0-1846-4956-afa8-1721c7e159c6", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. ", "original_text": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "3716061964c4b5f6af512bd66715130734b2396248b8651e1cb04606f4748c3e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "93c1fbbd-2699-4ae1-9962-68a0659657e4", "node_type": "1", "metadata": {"window": "These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. ", "original_text": "\u2022 We know very little about these pictures. "}, "hash": "040b8c151e3a3382093b52b7557966fc9a5de352727833911f492980d2f0a99b", "class_name": "RelatedNodeInfo"}}, "text": "Zanzibar did not abolish slavery until 1897.\n", "start_char_idx": 368, "end_char_idx": 413, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "93c1fbbd-2699-4ae1-9962-68a0659657e4": {"__data__": {"id_": "93c1fbbd-2699-4ae1-9962-68a0659657e4", "embedding": null, "metadata": {"window": "These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. ", "original_text": "\u2022 We know very little about these pictures. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dc6ba06b-d8da-41cc-9bfe-2278eea4e56a", "node_type": "1", "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n", "original_text": "Zanzibar did not abolish slavery until 1897.\n", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "90a008adf8ae22855df3d111b060d60a7b802980d1a64da565e094abb21450dd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f813959-7893-486a-8d03-714339c68ce4", "node_type": "1", "metadata": {"window": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n", "original_text": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. "}, "hash": "5df6fe30b1ec912449c52adf17fc574491ca51990da717d010ccffb030d2c781", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 We know very little about these pictures. ", "start_char_idx": 413, "end_char_idx": 457, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8f813959-7893-486a-8d03-714339c68ce4": {"__data__": {"id_": "8f813959-7893-486a-8d03-714339c68ce4", "embedding": null, "metadata": {"window": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n", "original_text": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "93c1fbbd-2699-4ae1-9962-68a0659657e4", "node_type": "1", "metadata": {"window": "These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. ", "original_text": "\u2022 We know very little about these pictures. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "f8d6db3e149d187053ef4c249d7effa4514429101a242c6c0546e19bd2132d5d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f05a433d-ed66-4ed2-833c-2883a8db685a", "node_type": "1", "metadata": {"window": "Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807.", "original_text": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n"}, "hash": "3a211439c53ccd9f12c812bf05b778184a60b2eaf9157d32e76bfdcc49b2a0c4", "class_name": "RelatedNodeInfo"}}, "text": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. ", "start_char_idx": 457, "end_char_idx": 704, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f05a433d-ed66-4ed2-833c-2883a8db685a": {"__data__": {"id_": "f05a433d-ed66-4ed2-833c-2883a8db685a", "embedding": null, "metadata": {"window": "Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807.", "original_text": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8f813959-7893-486a-8d03-714339c68ce4", "node_type": "1", "metadata": {"window": "They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n", "original_text": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "cd0dcaacfb6502f4490696b7bcc7cebf7d856fddd51c76212bf4aff0acab93c6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28408e6d-fbfd-45e2-bc90-cb420df61123", "node_type": "1", "metadata": {"window": "\u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. "}, "hash": "24bf8a25099617942ff7e28b17e707cde18c5d8113492577f9c807c8fbdf1921", "class_name": "RelatedNodeInfo"}}, "text": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n", "start_char_idx": 704, "end_char_idx": 795, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "28408e6d-fbfd-45e2-bc90-cb420df61123": {"__data__": {"id_": "28408e6d-fbfd-45e2-bc90-cb420df61123", "embedding": null, "metadata": {"window": "\u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f05a433d-ed66-4ed2-833c-2883a8db685a", "node_type": "1", "metadata": {"window": "Zanzibar did not abolish slavery until 1897.\n \u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807.", "original_text": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "56323480fe768b48f8e0f6fe8720bde1a532252f3ca12cbc774e82e20afb0c1d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6a5bd365-07fd-49c3-bbee-d97f50e051da", "node_type": "1", "metadata": {"window": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n"}, "hash": "6d849da921008cf1bfc85672a69eab8ddac755b7b8832085d57ef3a9334e0e9f", "class_name": "RelatedNodeInfo"}}, "text": "\u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. ", "start_char_idx": 795, "end_char_idx": 941, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6a5bd365-07fd-49c3-bbee-d97f50e051da": {"__data__": {"id_": "6a5bd365-07fd-49c3-bbee-d97f50e051da", "embedding": null, "metadata": {"window": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "28408e6d-fbfd-45e2-bc90-cb420df61123", "node_type": "1", "metadata": {"window": "\u2022 We know very little about these pictures. Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "\u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "3c4824b6be9190343060bdf4cbe8935d5ef78e25cd677cd2963766916009b551", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2ab9e166-9379-493f-928b-d89ae364ae9b", "node_type": "1", "metadata": {"window": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "(Remember that Britain had been a large slave trading nation until 1807."}, "hash": "fb7389142eb22768b9ecac44f21c955010d7e50ab4713af0c5cee17fe2776521", "class_name": "RelatedNodeInfo"}}, "text": "Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n", "start_char_idx": 941, "end_char_idx": 1055, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2ab9e166-9379-493f-928b-d89ae364ae9b": {"__data__": {"id_": "2ab9e166-9379-493f-928b-d89ae364ae9b", "embedding": null, "metadata": {"window": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "(Remember that Britain had been a large slave trading nation until 1807.", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6a5bd365-07fd-49c3-bbee-d97f50e051da", "node_type": "1", "metadata": {"window": "Use the clues you can pick out from the \nphotographs to suggest what they actually show\n\u2022 Write a brief description of the enslaved people \u2013 age, numbers, clothing, other \nconditions\n\u2022 These photographs were taken about 1869, in the Indian Ocean. How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "373877023361fa1a68eb158e38361a5eb899cec02948dcbe57e6d55baf9dde7b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3a4ba3e0-e605-466a-9393-c37ae9f6f854", "node_type": "1", "metadata": {"window": "\u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": ")TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "1698e5d658bde8b627945def663a87901001d01b4c65c419002f0142e4026834", "class_name": "RelatedNodeInfo"}}, "text": "(Remember that Britain had been a large slave trading nation until 1807.", "start_char_idx": 1055, "end_char_idx": 1127, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3a4ba3e0-e605-466a-9393-c37ae9f6f854": {"__data__": {"id_": "3a4ba3e0-e605-466a-9393-c37ae9f6f854", "embedding": null, "metadata": {"window": "\u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": ")TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61", "node_type": "4", "metadata": {"page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2ab9e166-9379-493f-928b-d89ae364ae9b", "node_type": "1", "metadata": {"window": "How useful are they as \nevidence of the Atlantic slave trade before its abolition in 1807?\n \u2022 The ship on which these photographs were taken was the HMS Daphne, a British naval \nship used to prevent the transportation of enslaved people. Do you think Britain had \nthe right to act as the world\u2019s police, stopping and searching ships of other nations? \n (Remember that Britain had been a large slave trading nation until 1807. )TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "(Remember that Britain had been a large slave trading nation until 1807.", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "hash": "4838b459deaa668d1395f3e2e6e98f2e692193816551bad6618107c6bc92b9f8", "class_name": "RelatedNodeInfo"}}, "text": ")TasksSlavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 1127, "end_char_idx": 1208, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "58bd1a0c-4caf-4aab-97b9-d69cdaf9170e": {"__data__": {"id_": "58bd1a0c-4caf-4aab-97b9-d69cdaf9170e", "embedding": null, "metadata": {"window": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . ", "page_label": "11", "file_name": "slavery.pdf", "doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "30351e02-9445-431c-938b-2b002ed4735e", "node_type": "4", "metadata": {"page_label": "11", "file_name": "slavery.pdf", "doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "hash": "b8b7aa9c0fbf91ab00ed4690f69b63edb7f0ccf393bec1a7fffd927911eb2ba2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1af5f605-ca46-404d-8dc5-fc1b82de88e6", "node_type": "1", "metadata": {"window": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "45e0ae72f5f7e997378a082375531d58cc796545e04eb5c47b2b105a42e462dc", "class_name": "RelatedNodeInfo"}}, "text": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . ", "start_char_idx": 0, "end_char_idx": 96, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1af5f605-ca46-404d-8dc5-fc1b82de88e6": {"__data__": {"id_": "1af5f605-ca46-404d-8dc5-fc1b82de88e6", "embedding": null, "metadata": {"window": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "11", "file_name": "slavery.pdf", "doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "30351e02-9445-431c-938b-2b002ed4735e", "node_type": "4", "metadata": {"page_label": "11", "file_name": "slavery.pdf", "doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "hash": "b8b7aa9c0fbf91ab00ed4690f69b63edb7f0ccf393bec1a7fffd927911eb2ba2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "58bd1a0c-4caf-4aab-97b9-d69cdaf9170e", "node_type": "1", "metadata": {"window": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . ", "page_label": "11", "file_name": "slavery.pdf", "doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "hash": "bede8fa97a27cb58b76c32a02798b983401f65b7bec838eb6ce31c46c1d3f018", "class_name": "RelatedNodeInfo"}}, "text": "Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 96, "end_char_idx": 194, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0d9629cf-7213-4062-b3e8-7dbdfc05c1e6": {"__data__": {"id_": "0d9629cf-7213-4062-b3e8-7dbdfc05c1e6", "embedding": null, "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d", "node_type": "4", "metadata": {"page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "7abd0d51200b4a7168f72d83c8d6e0d2247155bc8081de0a70a34553db59b004", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7d80ba2f-ba44-49e2-97c8-68cea22d2916", "node_type": "1", "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. "}, "hash": "14cc18c237f4db71ca8fd9c7730c1613bc784c0260d4360a541f5dc8901d36ac", "class_name": "RelatedNodeInfo"}}, "text": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. ", "start_char_idx": 0, "end_char_idx": 235, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7d80ba2f-ba44-49e2-97c8-68cea22d2916": {"__data__": {"id_": "7d80ba2f-ba44-49e2-97c8-68cea22d2916", "embedding": null, "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d", "node_type": "4", "metadata": {"page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "7abd0d51200b4a7168f72d83c8d6e0d2247155bc8081de0a70a34553db59b004", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0d9629cf-7213-4062-b3e8-7dbdfc05c1e6", "node_type": "1", "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "2e48ca1910eac25076ebe549102bc0ab1e4d3fd528f1b28f41841725f3941b01", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bd2cf428-3bc4-4670-a299-bf780c72bea3", "node_type": "1", "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Head cut off & put \non a pole. "}, "hash": "7994e18554af439150c7407de55389b12905986f69dc8387356e87a3b60cf22b", "class_name": "RelatedNodeInfo"}}, "text": "Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. ", "start_char_idx": 235, "end_char_idx": 438, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bd2cf428-3bc4-4670-a299-bf780c72bea3": {"__data__": {"id_": "bd2cf428-3bc4-4670-a299-bf780c72bea3", "embedding": null, "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Head cut off & put \non a pole. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d", "node_type": "4", "metadata": {"page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "7abd0d51200b4a7168f72d83c8d6e0d2247155bc8081de0a70a34553db59b004", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7d80ba2f-ba44-49e2-97c8-68cea22d2916", "node_type": "1", "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "b063a541759d5814ab052fe3d20969fa26a2e0f3797a5c91a6e2170ea5be5e63", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6", "node_type": "1", "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "dd5cb8f35e07886e9b14c4994d1b448234a1817a6508f9308347d797a2507cc8", "class_name": "RelatedNodeInfo"}}, "text": "Head cut off & put \non a pole. ", "start_char_idx": 438, "end_char_idx": 469, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6": {"__data__": {"id_": "8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6", "embedding": null, "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d", "node_type": "4", "metadata": {"page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "7abd0d51200b4a7168f72d83c8d6e0d2247155bc8081de0a70a34553db59b004", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bd2cf428-3bc4-4670-a299-bf780c72bea3", "node_type": "1", "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Head cut off & put \non a pole. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "hash": "b05ca88a4aee4b0340c53c2b304232f6244b4f676dd65f1c7a7503739dd1dffd", "class_name": "RelatedNodeInfo"}}, "text": "Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 469, "end_char_idx": 1568, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3c390e3-85d3-4c69-9c96-066b77f5a79a": {"__data__": {"id_": "e3c390e3-85d3-4c69-9c96-066b77f5a79a", "embedding": null, "metadata": {"window": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "13", "file_name": "slavery.pdf", "doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944", "node_type": "4", "metadata": {"page_label": "13", "file_name": "slavery.pdf", "doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "hash": "1057bb7f603993abad2c2ca50b2dcb3cbedd3f28dd8fce9b60855db1359afdee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "332a3a26-4225-4fc5-a916-757c9d09546c", "node_type": "1", "metadata": {"window": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "858754e65b6b0cf0b8429654f7ced2467ff6d5033ab62ef440272a7fc625e08f", "class_name": "RelatedNodeInfo"}}, "text": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "start_char_idx": 0, "end_char_idx": 95, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "332a3a26-4225-4fc5-a916-757c9d09546c": {"__data__": {"id_": "332a3a26-4225-4fc5-a916-757c9d09546c", "embedding": null, "metadata": {"window": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "13", "file_name": "slavery.pdf", "doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944", "node_type": "4", "metadata": {"page_label": "13", "file_name": "slavery.pdf", "doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "hash": "1057bb7f603993abad2c2ca50b2dcb3cbedd3f28dd8fce9b60855db1359afdee", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e3c390e3-85d3-4c69-9c96-066b77f5a79a", "node_type": "1", "metadata": {"window": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "13", "file_name": "slavery.pdf", "doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "hash": "adb4cc5a403ae850ee709487ec7720ed0be9a4effd8de2d3930dc39af3a7398c", "class_name": "RelatedNodeInfo"}}, "text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 95, "end_char_idx": 195, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e42821bf-4fee-435b-a441-6e711f93afa8": {"__data__": {"id_": "e42821bf-4fee-435b-a441-6e711f93afa8", "embedding": null, "metadata": {"window": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "14", "file_name": "slavery.pdf", "doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53", "node_type": "4", "metadata": {"page_label": "14", "file_name": "slavery.pdf", "doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "hash": "4218310832865c7d1b174248f3c837481c38fff12ae64704852ec919001c1290", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fba66f0c-582c-4727-a940-6fe6b399d0e8", "node_type": "1", "metadata": {"window": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "1f1db6b8bff469d835609bb659aa0ab9d3ac3b53eb7bf0abc01a761775345224", "class_name": "RelatedNodeInfo"}}, "text": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "start_char_idx": 0, "end_char_idx": 95, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fba66f0c-582c-4727-a940-6fe6b399d0e8": {"__data__": {"id_": "fba66f0c-582c-4727-a940-6fe6b399d0e8", "embedding": null, "metadata": {"window": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "14", "file_name": "slavery.pdf", "doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53", "node_type": "4", "metadata": {"page_label": "14", "file_name": "slavery.pdf", "doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "hash": "4218310832865c7d1b174248f3c837481c38fff12ae64704852ec919001c1290", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e42821bf-4fee-435b-a441-6e711f93afa8", "node_type": "1", "metadata": {"window": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "14", "file_name": "slavery.pdf", "doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "hash": "c9af18f24be5da74ac0cb5c291849f213838498a0aad0312be784771ccea5dad", "class_name": "RelatedNodeInfo"}}, "text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 95, "end_char_idx": 195, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0cb107c3-ba56-4017-bc47-5a0b3b692df2": {"__data__": {"id_": "0cb107c3-ba56-4017-bc47-5a0b3b692df2", "embedding": null, "metadata": {"window": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "15", "file_name": "slavery.pdf", "doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d8135eba-3ae8-414d-b04b-af55d8891a72", "node_type": "4", "metadata": {"page_label": "15", "file_name": "slavery.pdf", "doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "hash": "322f1544a732019b830961650203185d6414ab73018226a6bbbac06398a32ca8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3b079652-a22e-4cea-aa9a-5405b1f81807", "node_type": "1", "metadata": {"window": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?"}, "hash": "2b62082007667634eb7e6171dd7cf17bc76cfd36d3beec4be46a47ab02744fd6", "class_name": "RelatedNodeInfo"}}, "text": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "start_char_idx": 0, "end_char_idx": 95, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3b079652-a22e-4cea-aa9a-5405b1f81807": {"__data__": {"id_": "3b079652-a22e-4cea-aa9a-5405b1f81807", "embedding": null, "metadata": {"window": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "15", "file_name": "slavery.pdf", "doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d8135eba-3ae8-414d-b04b-af55d8891a72", "node_type": "4", "metadata": {"page_label": "15", "file_name": "slavery.pdf", "doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "hash": "322f1544a732019b830961650203185d6414ab73018226a6bbbac06398a32ca8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0cb107c3-ba56-4017-bc47-5a0b3b692df2", "node_type": "1", "metadata": {"window": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "15", "file_name": "slavery.pdf", "doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "hash": "8d10ec8404907747b8cddb19e8e960fbf7b3ce2b5c5ace69e4a9a5757c28d675", "class_name": "RelatedNodeInfo"}}, "text": "Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "start_char_idx": 95, "end_char_idx": 195, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ffada7bd-ed77-47e1-b51b-b578bcbabf71": {"__data__": {"id_": "ffada7bd-ed77-47e1-b51b-b578bcbabf71", "embedding": null, "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n", "original_text": "Why do our hyperlinks come with footnotes?\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e2f56072-fc39-4e1a-bee3-73eede268aa6", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n", "original_text": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. "}, "hash": "a8be495a5aaf8c201809364e742af8f913d73bdd51a586d703580f79fd138ac0", "class_name": "RelatedNodeInfo"}}, "text": "Why do our hyperlinks come with footnotes?\n", "start_char_idx": 0, "end_char_idx": 43, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e2f56072-fc39-4e1a-bee3-73eede268aa6": {"__data__": {"id_": "e2f56072-fc39-4e1a-bee3-73eede268aa6", "embedding": null, "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n", "original_text": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. ", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ffada7bd-ed77-47e1-b51b-b578bcbabf71", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n", "original_text": "Why do our hyperlinks come with footnotes?\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "54bed24c53d9a67368bc888e05e62163b274acbf7afaeaddb94567e637458844", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9d56e7de-e17b-4ada-a431-edb219071f49", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n", "original_text": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n"}, "hash": "cec5ea359c934a2b66b63de3ef6eb741eb6f0fedb67379fdfd2da1949f10413a", "class_name": "RelatedNodeInfo"}}, "text": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. ", "start_char_idx": 43, "end_char_idx": 168, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9d56e7de-e17b-4ada-a431-edb219071f49": {"__data__": {"id_": "9d56e7de-e17b-4ada-a431-edb219071f49", "embedding": null, "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n", "original_text": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2f56072-fc39-4e1a-bee3-73eede268aa6", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n", "original_text": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. ", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "57e9c2165fbad25a93b8636f794faa2828413d582be651379daaa9cea98c0523", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43a19927-4a33-4a89-83fd-ad58d585938e", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n", "original_text": "Did you know? \n"}, "hash": "3f66af40b7883f9cb389eb0a60072bb1341ab4bb5e5e0c667501e3f420cdcb49", "class_name": "RelatedNodeInfo"}}, "text": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n", "start_char_idx": 168, "end_char_idx": 320, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "43a19927-4a33-4a89-83fd-ad58d585938e": {"__data__": {"id_": "43a19927-4a33-4a89-83fd-ad58d585938e", "embedding": null, "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n", "original_text": "Did you know? \n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9d56e7de-e17b-4ada-a431-edb219071f49", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n", "original_text": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "fb9f1f2ec4d473a6ae2542d9f586015ad26e1372410f6d23247e1f7238457e84", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "200e4c3e-0cfb-43a0-809f-1ce8197f0fec", "node_type": "1", "metadata": {"window": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. ", "original_text": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n"}, "hash": "db326fc0a2e137dfca8bb7f0e84811a63df200633fdd0343193b1bb5d0832ded", "class_name": "RelatedNodeInfo"}}, "text": "Did you know? \n", "start_char_idx": 320, "end_char_idx": 335, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "200e4c3e-0cfb-43a0-809f-1ce8197f0fec": {"__data__": {"id_": "200e4c3e-0cfb-43a0-809f-1ce8197f0fec", "embedding": null, "metadata": {"window": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. ", "original_text": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "43a19927-4a33-4a89-83fd-ad58d585938e", "node_type": "1", "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n", "original_text": "Did you know? \n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "b73c0d9e507f3b7bb72cb3af1e508ee32e9c37b1be2f996478ddc19faaec9c59", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4e9eb35d-1e39-4c53-839f-52bec0f97536", "node_type": "1", "metadata": {"window": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. ", "original_text": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n"}, "hash": "856659a713272cc8bb246a96f14514a6284cc885a1b3840b76dfe78bbc58bc7b", "class_name": "RelatedNodeInfo"}}, "text": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n", "start_char_idx": 335, "end_char_idx": 447, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4e9eb35d-1e39-4c53-839f-52bec0f97536": {"__data__": {"id_": "4e9eb35d-1e39-4c53-839f-52bec0f97536", "embedding": null, "metadata": {"window": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. ", "original_text": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "200e4c3e-0cfb-43a0-809f-1ce8197f0fec", "node_type": "1", "metadata": {"window": "Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. ", "original_text": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "037ff7139eb83a25ffa00848f6bf3f6696e81647094fe5384af70ed99deb6ab7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "979b9255-62a1-439e-98c6-433a4c37af0e", "node_type": "1", "metadata": {"window": "Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n", "original_text": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n"}, "hash": "a9e9076c3724a2b27bb6bafd52f630931d52d581ad9d3e639ec713a3c47deb0b", "class_name": "RelatedNodeInfo"}}, "text": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n", "start_char_idx": 447, "end_char_idx": 623, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "979b9255-62a1-439e-98c6-433a4c37af0e": {"__data__": {"id_": "979b9255-62a1-439e-98c6-433a4c37af0e", "embedding": null, "metadata": {"window": "Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n", "original_text": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4e9eb35d-1e39-4c53-839f-52bec0f97536", "node_type": "1", "metadata": {"window": "We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. ", "original_text": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "e97c763ec8984b3d555018c65cab0e747b9da6052ebd6ec661f74f6fc82e870b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d", "node_type": "1", "metadata": {"window": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. "}, "hash": "e388204ea5e737c3336325ffd093833d2e3c9cceaacb5209cea73796f7043efd", "class_name": "RelatedNodeInfo"}}, "text": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n", "start_char_idx": 623, "end_char_idx": 787, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d": {"__data__": {"id_": "b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d", "embedding": null, "metadata": {"window": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. ", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "979b9255-62a1-439e-98c6-433a4c37af0e", "node_type": "1", "metadata": {"window": "Did you know? \n The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n", "original_text": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "e601390cdbbb2ab1fa260f3d517ff4a464bcb5d71f134fa14a5fe51a9ed17bc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e209f9bf-dda9-43e3-8c64-38517c43c14f", "node_type": "1", "metadata": {"window": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "All \nyou need is a computer with a projector, webcam and microphone. "}, "hash": "e8345a6419cb7b85cc0b9f3cf036c363b8a91bf08ee82f9a8031a6fdf5f03e83", "class_name": "RelatedNodeInfo"}}, "text": "Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. ", "start_char_idx": 787, "end_char_idx": 965, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e209f9bf-dda9-43e3-8c64-38517c43c14f": {"__data__": {"id_": "e209f9bf-dda9-43e3-8c64-38517c43c14f", "embedding": null, "metadata": {"window": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "All \nyou need is a computer with a projector, webcam and microphone. ", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d", "node_type": "1", "metadata": {"window": "The National Archives Education Service also offers free workshops onsite in Kew and online \nin your classroom.\n Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. ", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "52ab30146a4f78bf10ee650723bdb4f22aafec24801264eb9f2e125a18a7bc91", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "68602cb0-6f9d-4eec-b4dc-af904ddf9455", "node_type": "1", "metadata": {"window": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n"}, "hash": "d2d82babd0e706775ff969732ff1be26a1b11c4d3803d4fd284b5d292c4ba430", "class_name": "RelatedNodeInfo"}}, "text": "All \nyou need is a computer with a projector, webcam and microphone. ", "start_char_idx": 965, "end_char_idx": 1034, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "68602cb0-6f9d-4eec-b4dc-af904ddf9455": {"__data__": {"id_": "68602cb0-6f9d-4eec-b4dc-af904ddf9455", "embedding": null, "metadata": {"window": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e209f9bf-dda9-43e3-8c64-38517c43c14f", "node_type": "1", "metadata": {"window": "Our Onsite Workshops are available for free here at The National Archives and allow \nstudents to experience genuine original documents reflecting over 1000 years of history. \n From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "All \nyou need is a computer with a projector, webcam and microphone. ", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "95dbfa940c2b4f1b8b19d57c947746cf8eb194d6367e09ba4dccd5f881938a08", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9203e64d-436e-40d3-864d-bc7a6970b421", "node_type": "1", "metadata": {"window": "Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu"}, "hash": "9d8281a9718e62907db95ab1bc628c1d0a9b994fc98fb9a5e7e4c72d9e5bbc93", "class_name": "RelatedNodeInfo"}}, "text": "We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n", "start_char_idx": 1034, "end_char_idx": 1111, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9203e64d-436e-40d3-864d-bc7a6970b421": {"__data__": {"id_": "9203e64d-436e-40d3-864d-bc7a6970b421", "embedding": null, "metadata": {"window": "Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b0199728-e735-498f-806f-7bd8330355e0", "node_type": "4", "metadata": {"page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "68602cb0-6f9d-4eec-b4dc-af904ddf9455", "node_type": "1", "metadata": {"window": "From Elizabeth I\u2019s signature to the telegrams of the sinking Titanic, students love the wow-\nfactor of being able to see real history on the desk in front of them.\n Our Online Workshops allow our Education Officers to teach through your projector, leading \ndiscussions and guiding students through activities based around original documents. All \nyou need is a computer with a projector, webcam and microphone. We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "original_text": "We\u2019ll arrange a test call \nbefore your session to check the tech is working.\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "hash": "fc30c6523ed44314ecbba64b0862f7d1590b18c11b6b4f2d788d56dc4f908a83", "class_name": "RelatedNodeInfo"}}, "text": "Find out more:\n\uf0fcnationalarchives.gov.uk/education\n\uf09b education@nationalarchives.gov.uk\nfacebook.com/TheNationalArchivesEducationService\ntwitter.com/UKNatArcEdu", "start_char_idx": 1111, "end_char_idx": 1269, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a39ac088-9722-442e-9d9b-c0e55fc17801": {"__data__": {"id_": "a39ac088-9722-442e-9d9b-c0e55fc17801", "embedding": null, "metadata": {"window": " \n \n \n \n \n \n Anti-Money Laundering / \nCounter Financing of Terrorism \nPolicy \n(AML / CFT POLICY) \n \n \n \n \n \n \n \n \n \n \nRevised: January 2023 \n \nAPPROVED BY 416TH BOD MEETING DATED 4TH JAN 2023 \n \n \n \n", "original_text": " \n \n \n \n \n \n Anti-Money Laundering / \nCounter Financing of Terrorism \nPolicy \n(AML / CFT POLICY) \n \n \n \n \n \n \n \n \n \n \nRevised: January 2023 \n \nAPPROVED BY 416TH BOD MEETING DATED 4TH JAN 2023 \n \n \n \n", "page_label": "1", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "f6041522-e8d0-4707-9e2e-ce505314b1b8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "f6041522-e8d0-4707-9e2e-ce505314b1b8", "node_type": "4", "metadata": {"page_label": "1", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "f6041522-e8d0-4707-9e2e-ce505314b1b8"}, "hash": "632eeea7345a9fd1ae830f38ab1a259add1eb91b0a43caa5c19d1e3f74a48fae", "class_name": "RelatedNodeInfo"}}, "text": " \n \n \n \n \n \n Anti-Money Laundering / \nCounter Financing of Terrorism \nPolicy \n(AML / CFT POLICY) \n \n \n \n \n \n \n \n \n \n \nRevised: January 2023 \n \nAPPROVED BY 416TH BOD MEETING DATED 4TH JAN 2023 \n \n \n \n", "start_char_idx": 0, "end_char_idx": 203, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "eca70f18-6c77-4e89-a476-fd5a9e713826": {"__data__": {"id_": "eca70f18-6c77-4e89-a476-fd5a9e713826", "embedding": null, "metadata": {"window": "i Contents \n \nVERSION CONTROL iii \nABBREVIATIONS iv \nCHAPTER 1: INTRODUCTION 1 \n1.1 Background 1 \n1.2 Definitions of key terms 1 \n1.2.1 Money Laundering 1 \n1.2.2 Financing of Terrorism 2 \n1.2.3 Proliferation Financing 2 \n1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) 2 \n1.2.5 Trade based money laundering 2 \n1.2.6 Customers 2 \n1.2.7 Shell bank and shell entity 2 \n1.2.8 Beneficial owner 3 \n1.2.9 Tipping Off 3 \n1.3 Objective 3 \n1.4 Governance Structure 3 \n1.4.1 Board of Dire ctors 3 \n1.4.2 Senior management 4 \n1.4.3 AML/CFT Unit 4 \n1.4.4 Asset (Mo ney) Laundering Prevention Committee 4 \n1.4.5 AML/CFT Committee 4 \n1.4.6 Three -line-of-defense 5 \nCHAPTER 2: CUSTOMER IDENTIFICATION AND DUE DILIGENCE 8 \n2.1 Know Your Customer 8 \n2.2 KYC Elements 8 \n2.2.1 Customer Identification Procedures 8 \n2.2.2 Risk Management 9 \n2.2.3 Customer Acceptance Policy 10 \n2.2.4 Monitoring of Transactions 12 \n2.3 Customer Due Diligence 12 \n2.3.1 Types of CDD based on customer risk rating 13 \nCHAPTER 3: MONITORING AND REPORTING 14 \n3.1 Transaction monitoring 14 ", "original_text": "i Contents \n \nVERSION CONTROL iii \nABBREVIATIONS iv \nCHAPTER 1: INTRODUCTION 1 \n1.1 Background 1 \n1.2 Definitions of key terms 1 \n1.2.1 Money Laundering 1 \n1.2.2 Financing of Terrorism 2 \n1.2.3 Proliferation Financing 2 \n1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) 2 \n1.2.5 Trade based money laundering 2 \n1.2.6 Customers 2 \n1.2.7 Shell bank and shell entity 2 \n1.2.8 Beneficial owner 3 \n1.2.9 Tipping Off 3 \n1.3 Objective 3 \n1.4 Governance Structure 3 \n1.4.1 Board of Dire ctors 3 \n1.4.2 Senior management 4 \n1.4.3 AML/CFT Unit 4 \n1.4.4 Asset (Mo ney) Laundering Prevention Committee 4 \n1.4.5 AML/CFT Committee 4 \n1.4.6 Three -line-of-defense 5 \nCHAPTER 2: CUSTOMER IDENTIFICATION AND DUE DILIGENCE 8 \n2.1 Know Your Customer 8 \n2.2 KYC Elements 8 \n2.2.1 Customer Identification Procedures 8 \n2.2.2 Risk Management 9 \n2.2.3 Customer Acceptance Policy 10 \n2.2.4 Monitoring of Transactions 12 \n2.3 Customer Due Diligence 12 \n2.3.1 Types of CDD based on customer risk rating 13 \nCHAPTER 3: MONITORING AND REPORTING 14 \n3.1 Transaction monitoring 14 ", "page_label": "2", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "ec393c1b-18d0-4461-9c32-b75b3d9ea676"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ec393c1b-18d0-4461-9c32-b75b3d9ea676", "node_type": "4", "metadata": {"page_label": "2", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "ec393c1b-18d0-4461-9c32-b75b3d9ea676"}, "hash": "6f74ab47b81f333223d16660687746278e691bf5e0e7f7c0b8d7e3a331bed1ee", "class_name": "RelatedNodeInfo"}}, "text": "i Contents \n \nVERSION CONTROL iii \nABBREVIATIONS iv \nCHAPTER 1: INTRODUCTION 1 \n1.1 Background 1 \n1.2 Definitions of key terms 1 \n1.2.1 Money Laundering 1 \n1.2.2 Financing of Terrorism 2 \n1.2.3 Proliferation Financing 2 \n1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) 2 \n1.2.5 Trade based money laundering 2 \n1.2.6 Customers 2 \n1.2.7 Shell bank and shell entity 2 \n1.2.8 Beneficial owner 3 \n1.2.9 Tipping Off 3 \n1.3 Objective 3 \n1.4 Governance Structure 3 \n1.4.1 Board of Dire ctors 3 \n1.4.2 Senior management 4 \n1.4.3 AML/CFT Unit 4 \n1.4.4 Asset (Mo ney) Laundering Prevention Committee 4 \n1.4.5 AML/CFT Committee 4 \n1.4.6 Three -line-of-defense 5 \nCHAPTER 2: CUSTOMER IDENTIFICATION AND DUE DILIGENCE 8 \n2.1 Know Your Customer 8 \n2.2 KYC Elements 8 \n2.2.1 Customer Identification Procedures 8 \n2.2.2 Risk Management 9 \n2.2.3 Customer Acceptance Policy 10 \n2.2.4 Monitoring of Transactions 12 \n2.3 Customer Due Diligence 12 \n2.3.1 Types of CDD based on customer risk rating 13 \nCHAPTER 3: MONITORING AND REPORTING 14 \n3.1 Transaction monitoring 14 ", "start_char_idx": 0, "end_char_idx": 1127, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499": {"__data__": {"id_": "36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499", "embedding": null, "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. ", "original_text": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. ", "original_text": "Training 17 \n4.2. "}, "hash": "99f86fecf32118b47ff20720c670d5d5b2f8276622c437ac16a60013c9248de8", "class_name": "RelatedNodeInfo"}}, "text": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. ", "start_char_idx": 0, "end_char_idx": 266, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e": {"__data__": {"id_": "ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e", "embedding": null, "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. ", "original_text": "Training 17 \n4.2. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. ", "original_text": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "ccb796d70f7eba75fe7ca3b28a31be9a426039ab1642fe97c36b1b5c09458d02", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "77051c31-f841-4e14-894e-1f862021b3dd", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. ", "original_text": "Confidentiality and Tipping off 17 \n4.3. "}, "hash": "deb3b3ae0fe292a55697bcd912c5be1d37c7c08005538aa1dfc3ebfc79ef939a", "class_name": "RelatedNodeInfo"}}, "text": "Training 17 \n4.2. ", "start_char_idx": 266, "end_char_idx": 285, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "77051c31-f841-4e14-894e-1f862021b3dd": {"__data__": {"id_": "77051c31-f841-4e14-894e-1f862021b3dd", "embedding": null, "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. ", "original_text": "Confidentiality and Tipping off 17 \n4.3. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. ", "original_text": "Training 17 \n4.2. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "5324e723627f5aa2d4d9cfb8b7d9ebb405aee39de9ad2066dbcd2fc79116feb3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "595b345e-ee63-409c-9292-68359467be4f", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. ", "original_text": "Non-Compliance 17 \n4.4. "}, "hash": "caf9c80f2e56229294af96fb0a0d341c02ed24a35eedb74052f4b0976f85547a", "class_name": "RelatedNodeInfo"}}, "text": "Confidentiality and Tipping off 17 \n4.3. ", "start_char_idx": 285, "end_char_idx": 327, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "595b345e-ee63-409c-9292-68359467be4f": {"__data__": {"id_": "595b345e-ee63-409c-9292-68359467be4f", "embedding": null, "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. ", "original_text": "Non-Compliance 17 \n4.4. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "77051c31-f841-4e14-894e-1f862021b3dd", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. ", "original_text": "Confidentiality and Tipping off 17 \n4.3. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "3e64a5ee829a171038e7a28522b21fa8c056432a6fb8310b4cbf5855e984bf4e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "57f9f691-887d-4f71-a458-7373c780e219", "node_type": "1", "metadata": {"window": "Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. ", "original_text": "Not to be Liable for Providing Information 17 \n4.5. "}, "hash": "0b9f43e26c79feb9ab8bdbc16a69252082c88d629cb5d7929170b86ab7261951", "class_name": "RelatedNodeInfo"}}, "text": "Non-Compliance 17 \n4.4. ", "start_char_idx": 327, "end_char_idx": 352, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "57f9f691-887d-4f71-a458-7373c780e219": {"__data__": {"id_": "57f9f691-887d-4f71-a458-7373c780e219", "embedding": null, "metadata": {"window": "Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. ", "original_text": "Not to be Liable for Providing Information 17 \n4.5. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "595b345e-ee63-409c-9292-68359467be4f", "node_type": "1", "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. ", "original_text": "Non-Compliance 17 \n4.4. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "ae1bcc921bf4c3444c99b21143e96ad93a8c559aea618e369ab1936f088edfa5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e5a1e03f-b0a0-4d55-9200-b54d3c152d3e", "node_type": "1", "metadata": {"window": "Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. ", "original_text": "Importance of Know Your Employee (KYE) 17 \n4.6. "}, "hash": "4f9f2142b360e60719501d6807be8eadffbb6b8119916fd83f789dd8c461365d", "class_name": "RelatedNodeInfo"}}, "text": "Not to be Liable for Providing Information 17 \n4.5. ", "start_char_idx": 352, "end_char_idx": 405, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e5a1e03f-b0a0-4d55-9200-b54d3c152d3e": {"__data__": {"id_": "e5a1e03f-b0a0-4d55-9200-b54d3c152d3e", "embedding": null, "metadata": {"window": "Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. ", "original_text": "Importance of Know Your Employee (KYE) 17 \n4.6. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "57f9f691-887d-4f71-a458-7373c780e219", "node_type": "1", "metadata": {"window": "Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. ", "original_text": "Not to be Liable for Providing Information 17 \n4.5. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "d16be90a03628e027bff26de5f3e7251000505d68032e54ce62eaaf6d2ec242f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3acecbd4-1867-4451-b65a-5dbf975bb532", "node_type": "1", "metadata": {"window": "Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. ", "original_text": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. "}, "hash": "3e9e0f4acaa29b29415dfdf0661dc942eb61c889b0ab7fd08b21a81e6ca89606", "class_name": "RelatedNodeInfo"}}, "text": "Importance of Know Your Employee (KYE) 17 \n4.6. ", "start_char_idx": 405, "end_char_idx": 454, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3acecbd4-1867-4451-b65a-5dbf975bb532": {"__data__": {"id_": "3acecbd4-1867-4451-b65a-5dbf975bb532", "embedding": null, "metadata": {"window": "Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. ", "original_text": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e5a1e03f-b0a0-4d55-9200-b54d3c152d3e", "node_type": "1", "metadata": {"window": "Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. ", "original_text": "Importance of Know Your Employee (KYE) 17 \n4.6. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "7b675d6d2b8705d600dff29a116f438cd1b5bbf3de556f8b643cf670d07c6fdc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0957ead3-48dd-4dba-8d5d-231ad4bf4079", "node_type": "1", "metadata": {"window": "Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. ", "original_text": "AML/CFT Guidelines 19 \n5.2. "}, "hash": "101507ac6fae2c405d05d38e92e1fd1b17df54f5d72614a20623ccfaa8ad3246", "class_name": "RelatedNodeInfo"}}, "text": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. ", "start_char_idx": 454, "end_char_idx": 512, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0957ead3-48dd-4dba-8d5d-231ad4bf4079": {"__data__": {"id_": "0957ead3-48dd-4dba-8d5d-231ad4bf4079", "embedding": null, "metadata": {"window": "Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. ", "original_text": "AML/CFT Guidelines 19 \n5.2. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3acecbd4-1867-4451-b65a-5dbf975bb532", "node_type": "1", "metadata": {"window": "Non-Compliance 17 \n4.4. Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. ", "original_text": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "b609ac6689f1aea30b6207b3e771ca35e9c130ec10a42cb8a83792cb83ba8c47", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e8285ac4-67c6-465e-bb2e-bb4d232ee8b9", "node_type": "1", "metadata": {"window": "Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Others 19 \n5.3. "}, "hash": "dacba2f5a7d531059aba3cc7b1491f2c6522df1c7ecafd54c2cc39c44bd1f3cd", "class_name": "RelatedNodeInfo"}}, "text": "AML/CFT Guidelines 19 \n5.2. ", "start_char_idx": 512, "end_char_idx": 541, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e8285ac4-67c6-465e-bb2e-bb4d232ee8b9": {"__data__": {"id_": "e8285ac4-67c6-465e-bb2e-bb4d232ee8b9", "embedding": null, "metadata": {"window": "Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Others 19 \n5.3. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0957ead3-48dd-4dba-8d5d-231ad4bf4079", "node_type": "1", "metadata": {"window": "Not to be Liable for Providing Information 17 \n4.5. Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. ", "original_text": "AML/CFT Guidelines 19 \n5.2. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "750d43580fed789a33194ce414eb228f5f7ff322e5cda1146cfbcaf44a6a549e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f6df0908-4d14-4b3f-89c7-0d0db1a18073", "node_type": "1", "metadata": {"window": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Maintenance and Update 19 \n5.4. "}, "hash": "48e4023918828c8ae691724d22bfe05bf41fe542f7525b4951b49d7ef1865a15", "class_name": "RelatedNodeInfo"}}, "text": "Others 19 \n5.3. ", "start_char_idx": 541, "end_char_idx": 558, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f6df0908-4d14-4b3f-89c7-0d0db1a18073": {"__data__": {"id_": "f6df0908-4d14-4b3f-89c7-0d0db1a18073", "embedding": null, "metadata": {"window": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Maintenance and Update 19 \n5.4. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e8285ac4-67c6-465e-bb2e-bb4d232ee8b9", "node_type": "1", "metadata": {"window": "Importance of Know Your Employee (KYE) 17 \n4.6. Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Others 19 \n5.3. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "d4dada52f8640a4272ecbc9a0216aff8fc10800d82841c20e5091cd29e0863f1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "403213cd-056c-4dd4-9f30-6c196e4b843a", "node_type": "1", "metadata": {"window": "AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Repeal and Savings 19 \n5.5. "}, "hash": "77ac09bdd6451fed5a15625dc2394f77b29206506d1684c1e791802adbccddda", "class_name": "RelatedNodeInfo"}}, "text": "Maintenance and Update 19 \n5.4. ", "start_char_idx": 558, "end_char_idx": 591, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "403213cd-056c-4dd4-9f30-6c196e4b843a": {"__data__": {"id_": "403213cd-056c-4dd4-9f30-6c196e4b843a", "embedding": null, "metadata": {"window": "AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Repeal and Savings 19 \n5.5. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f6df0908-4d14-4b3f-89c7-0d0db1a18073", "node_type": "1", "metadata": {"window": "Code -of-conduct 18 \nCHAPTER 5: MISCELLANEOUS 19 \n5.1. AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Maintenance and Update 19 \n5.4. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "f1865de388634766f17a55d964aa00de9ed02abfb94a8e2dde44eb80e2de5f93", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "763de8e3-b292-4b0f-a23d-352999b8dac3", "node_type": "1", "metadata": {"window": "Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Effective Date 19 \n \n "}, "hash": "fdb6ea28a75ebd889f231a0ca16f9466f6a6415f70d9e14a958f15ed211f05bf", "class_name": "RelatedNodeInfo"}}, "text": "Repeal and Savings 19 \n5.5. ", "start_char_idx": 591, "end_char_idx": 620, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "763de8e3-b292-4b0f-a23d-352999b8dac3": {"__data__": {"id_": "763de8e3-b292-4b0f-a23d-352999b8dac3", "embedding": null, "metadata": {"window": "Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Effective Date 19 \n \n ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e", "node_type": "4", "metadata": {"page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "403213cd-056c-4dd4-9f30-6c196e4b843a", "node_type": "1", "metadata": {"window": "AML/CFT Guidelines 19 \n5.2. Others 19 \n5.3. Maintenance and Update 19 \n5.4. Repeal and Savings 19 \n5.5. Effective Date 19 \n \n ", "original_text": "Repeal and Savings 19 \n5.5. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "hash": "1eb3d06b0318ad82ba27bf5f659b682d0762e252589bfd7539e14841704b1862", "class_name": "RelatedNodeInfo"}}, "text": "Effective Date 19 \n \n ", "start_char_idx": 620, "end_char_idx": 644, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0029fe70-8458-48fe-9867-052638f3e121": {"__data__": {"id_": "0029fe70-8458-48fe-9867-052638f3e121", "embedding": null, "metadata": {"window": "iii VERSION CONTROL \nVersion Control No. Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "original_text": "iii VERSION CONTROL \nVersion Control No. ", "page_label": "4", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "hash": "75b608b98e13777552562a8927bb2b92c622279cf1a743d873252f2b9db02d48", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "49061286-377d-4bd2-868f-9af96241cc3f", "node_type": "1", "metadata": {"window": "iii VERSION CONTROL \nVersion Control No. Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "original_text": "Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n "}, "hash": "31ef26199013a054f80735698380ccff14f2f970f3e2b97b01cf7618e0aebec7", "class_name": "RelatedNodeInfo"}}, "text": "iii VERSION CONTROL \nVersion Control No. ", "start_char_idx": 0, "end_char_idx": 43, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "49061286-377d-4bd2-868f-9af96241cc3f": {"__data__": {"id_": "49061286-377d-4bd2-868f-9af96241cc3f", "embedding": null, "metadata": {"window": "iii VERSION CONTROL \nVersion Control No. Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "original_text": "Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "page_label": "4", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "hash": "75b608b98e13777552562a8927bb2b92c622279cf1a743d873252f2b9db02d48", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0029fe70-8458-48fe-9867-052638f3e121", "node_type": "1", "metadata": {"window": "iii VERSION CONTROL \nVersion Control No. Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "original_text": "iii VERSION CONTROL \nVersion Control No. ", "page_label": "4", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "hash": "ee14e7bd8caf31fe4377a8bec7c46b295500553936311f75e5e2d1e18063e027", "class_name": "RelatedNodeInfo"}}, "text": "Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "start_char_idx": 43, "end_char_idx": 261, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4e9bcbd6-b2f0-4e98-b621-37cd6e2bab33": {"__data__": {"id_": "4e9bcbd6-b2f0-4e98-b621-37cd6e2bab33", "embedding": null, "metadata": {"window": "iv \nABBREVIATIONS \n \nAML Anti-Money Laundering \nALPA Asset (Money) Laundering Prevention Act, 2064 \nAPG Asia/Pacific Group on Money Laundering \nBOD Board of Directors \nCDD Customer Due Diligence \nCCO Chief Compliance Officer \nCOCO Chief of Country Operations \nCEO Chief Executive Officer \nCOO Chief Operating Officer \nCFT Counter -Financing of Terrorism \nECDD Enhanced Customer Due Diligence \nEU European Union \nFATF Financial Action Task Force \nFIU Financial Intelligence Unit \nHMT Her Majesty\u2019s Treasury, United Kingdom \nHRD Human Resource Department \nKYC Know Your Customer \nKYE Know Your Employee \nML Money Laundering \nMLRO Money Laundering Reporting Officer \nML/TF Money Laundering and/or Terrorist Financing \nNRB Nepal Rastra Bank \nOFAC Office of Foreign Assets Control \nPEP Politically Exposed Person \nRules Asset (Money) Laundering Prevention Rules 2073 \nSTR Suspicious Transaction Report \nTBML Trade Based Money Laundering \nTF Terrorist Financing \nThe Policy Anti-Money Laundering / Counter Financing of Terrorism Policy of the Bank \nTTR Threshold Transaction Report \nUN United Nations ", "original_text": "iv \nABBREVIATIONS \n \nAML Anti-Money Laundering \nALPA Asset (Money) Laundering Prevention Act, 2064 \nAPG Asia/Pacific Group on Money Laundering \nBOD Board of Directors \nCDD Customer Due Diligence \nCCO Chief Compliance Officer \nCOCO Chief of Country Operations \nCEO Chief Executive Officer \nCOO Chief Operating Officer \nCFT Counter -Financing of Terrorism \nECDD Enhanced Customer Due Diligence \nEU European Union \nFATF Financial Action Task Force \nFIU Financial Intelligence Unit \nHMT Her Majesty\u2019s Treasury, United Kingdom \nHRD Human Resource Department \nKYC Know Your Customer \nKYE Know Your Employee \nML Money Laundering \nMLRO Money Laundering Reporting Officer \nML/TF Money Laundering and/or Terrorist Financing \nNRB Nepal Rastra Bank \nOFAC Office of Foreign Assets Control \nPEP Politically Exposed Person \nRules Asset (Money) Laundering Prevention Rules 2073 \nSTR Suspicious Transaction Report \nTBML Trade Based Money Laundering \nTF Terrorist Financing \nThe Policy Anti-Money Laundering / Counter Financing of Terrorism Policy of the Bank \nTTR Threshold Transaction Report \nUN United Nations ", "page_label": "5", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b1ef24fa-97f3-42e0-961d-291e54170218"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b1ef24fa-97f3-42e0-961d-291e54170218", "node_type": "4", "metadata": {"page_label": "5", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b1ef24fa-97f3-42e0-961d-291e54170218"}, "hash": "782cfe9f2095292a9e843683c7526c27bdff41e0416c860ee7a6ea58f72d8fc6", "class_name": "RelatedNodeInfo"}}, "text": "iv \nABBREVIATIONS \n \nAML Anti-Money Laundering \nALPA Asset (Money) Laundering Prevention Act, 2064 \nAPG Asia/Pacific Group on Money Laundering \nBOD Board of Directors \nCDD Customer Due Diligence \nCCO Chief Compliance Officer \nCOCO Chief of Country Operations \nCEO Chief Executive Officer \nCOO Chief Operating Officer \nCFT Counter -Financing of Terrorism \nECDD Enhanced Customer Due Diligence \nEU European Union \nFATF Financial Action Task Force \nFIU Financial Intelligence Unit \nHMT Her Majesty\u2019s Treasury, United Kingdom \nHRD Human Resource Department \nKYC Know Your Customer \nKYE Know Your Employee \nML Money Laundering \nMLRO Money Laundering Reporting Officer \nML/TF Money Laundering and/or Terrorist Financing \nNRB Nepal Rastra Bank \nOFAC Office of Foreign Assets Control \nPEP Politically Exposed Person \nRules Asset (Money) Laundering Prevention Rules 2073 \nSTR Suspicious Transaction Report \nTBML Trade Based Money Laundering \nTF Terrorist Financing \nThe Policy Anti-Money Laundering / Counter Financing of Terrorism Policy of the Bank \nTTR Threshold Transaction Report \nUN United Nations ", "start_char_idx": 0, "end_char_idx": 1149, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bfd83eea-695c-4156-b9e0-ed51488f50cd": {"__data__": {"id_": "bfd83eea-695c-4156-b9e0-ed51488f50cd", "embedding": null, "metadata": {"window": "v WMD Weapons of Mass Destruction ", "original_text": "v WMD Weapons of Mass Destruction ", "page_label": "6", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "69dfe709-e348-45f2-98f4-f093395080a7"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "69dfe709-e348-45f2-98f4-f093395080a7", "node_type": "4", "metadata": {"page_label": "6", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "69dfe709-e348-45f2-98f4-f093395080a7"}, "hash": "402ebd4e6354aed5a4aa39c11d781e9178f2907cd130a677a80c1ee1c9cfa188", "class_name": "RelatedNodeInfo"}}, "text": "v WMD Weapons of Mass Destruction ", "start_char_idx": 0, "end_char_idx": 36, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c52e477a-e629-4d8d-ae02-3acec463f0e5": {"__data__": {"id_": "c52e477a-e629-4d8d-ae02-3acec463f0e5", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). ", "original_text": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "528d270b-d6b7-458c-aa0c-17cfb1b7493b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. ", "original_text": "The Bank is committed towards providing entire \ncommercial banking products and services. "}, "hash": "4ea0102843c9e280564c5065777acc546e1e60df3dde06cd665dc01c913dd52a", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. ", "start_char_idx": 0, "end_char_idx": 223, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "528d270b-d6b7-458c-aa0c-17cfb1b7493b": {"__data__": {"id_": "528d270b-d6b7-458c-aa0c-17cfb1b7493b", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. ", "original_text": "The Bank is committed towards providing entire \ncommercial banking products and services. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c52e477a-e629-4d8d-ae02-3acec463f0e5", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). ", "original_text": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "02f78260afa820cc0ade3d22c74fce9256a0e1f4c0036f8c3a4a03960e063957", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "38c05c5c-78a9-41fd-b8c8-cc911b44b392", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n", "original_text": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n"}, "hash": "bb65b7f4102f1750de68f8c514e0c60e0cacf14fe76d2c141c75b1f7b5b71e62", "class_name": "RelatedNodeInfo"}}, "text": "The Bank is committed towards providing entire \ncommercial banking products and services. ", "start_char_idx": 223, "end_char_idx": 313, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "38c05c5c-78a9-41fd-b8c8-cc911b44b392": {"__data__": {"id_": "38c05c5c-78a9-41fd-b8c8-cc911b44b392", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n", "original_text": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "528d270b-d6b7-458c-aa0c-17cfb1b7493b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. ", "original_text": "The Bank is committed towards providing entire \ncommercial banking products and services. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "0a0a9eb63ebdff10c0ec3824a2cb3413d8263841ba6ba0374b2ca4d2bcf0a453", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3766a672-229d-481b-8e77-f63d9edfe42d", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. ", "original_text": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). "}, "hash": "d486108a4591ebc225b1e2e83f5888f6391da957dcf9af7fe9d6adfb489a1482", "class_name": "RelatedNodeInfo"}}, "text": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n", "start_char_idx": 313, "end_char_idx": 383, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3766a672-229d-481b-8e77-f63d9edfe42d": {"__data__": {"id_": "3766a672-229d-481b-8e77-f63d9edfe42d", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. ", "original_text": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "38c05c5c-78a9-41fd-b8c8-cc911b44b392", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n", "original_text": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "489d01a731ac7dfc0add8da219278d231759d4376ad21137bc199d1a591fe904", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "88caea78-3b8c-4c50-8e40-be33f06d0a84", "node_type": "1", "metadata": {"window": "The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n", "original_text": "The \nBank is subject to applicable legislation designed to prevent ML/TF. "}, "hash": "a337ec3170eb6269eefeb68ae29fbcb21d185a8aad0324e7454375ceb152fd4d", "class_name": "RelatedNodeInfo"}}, "text": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). ", "start_char_idx": 383, "end_char_idx": 639, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "88caea78-3b8c-4c50-8e40-be33f06d0a84": {"__data__": {"id_": "88caea78-3b8c-4c50-8e40-be33f06d0a84", "embedding": null, "metadata": {"window": "The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n", "original_text": "The \nBank is subject to applicable legislation designed to prevent ML/TF. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3766a672-229d-481b-8e77-f63d9edfe42d", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. ", "original_text": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "31407b73a6bfe3a0b4021f6a6f425d95319c7974564b6d9c1174cd32824280af", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "79661545-c9b8-410c-a23c-7b75c28e1847", "node_type": "1", "metadata": {"window": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n", "original_text": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n"}, "hash": "deb148fbe08437aab982fb938b84b2a9ef62a4f79f8fc75230f7712650dcba78", "class_name": "RelatedNodeInfo"}}, "text": "The \nBank is subject to applicable legislation designed to prevent ML/TF. ", "start_char_idx": 639, "end_char_idx": 713, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "79661545-c9b8-410c-a23c-7b75c28e1847": {"__data__": {"id_": "79661545-c9b8-410c-a23c-7b75c28e1847", "embedding": null, "metadata": {"window": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n", "original_text": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "88caea78-3b8c-4c50-8e40-be33f06d0a84", "node_type": "1", "metadata": {"window": "The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n", "original_text": "The \nBank is subject to applicable legislation designed to prevent ML/TF. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "89a2e04180d5376b926a8bc7780e70253037dc787981923378172f8d4e6baf47", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4118448b-bb8b-4fd6-9f1b-e10f8247536f", "node_type": "1", "metadata": {"window": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n", "original_text": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. "}, "hash": "9d1d75d603f25df4a6c1948c3530570ecbaed2f430b5da98bf8392ded881dfed", "class_name": "RelatedNodeInfo"}}, "text": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n", "start_char_idx": 713, "end_char_idx": 918, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4118448b-bb8b-4fd6-9f1b-e10f8247536f": {"__data__": {"id_": "4118448b-bb8b-4fd6-9f1b-e10f8247536f", "embedding": null, "metadata": {"window": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n", "original_text": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "79661545-c9b8-410c-a23c-7b75c28e1847", "node_type": "1", "metadata": {"window": "The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n", "original_text": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "b396656973c473fa895b968833a2d04ea1fb753fe480ddf0b3fb212655f423eb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f157ec57-6d4d-4539-a463-eaef48d39eaa", "node_type": "1", "metadata": {"window": "The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . ", "original_text": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n"}, "hash": "e90f00d8f55cece8be784e19f0172087731082992df36e5b0abb6c3fdea2360f", "class_name": "RelatedNodeInfo"}}, "text": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. ", "start_char_idx": 918, "end_char_idx": 1172, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f157ec57-6d4d-4539-a463-eaef48d39eaa": {"__data__": {"id_": "f157ec57-6d4d-4539-a463-eaef48d39eaa", "embedding": null, "metadata": {"window": "The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . ", "original_text": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4118448b-bb8b-4fd6-9f1b-e10f8247536f", "node_type": "1", "metadata": {"window": "The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n", "original_text": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "65905eb3aad57b805a38908b09374a94576166b143bdd122d31c73aec4615a8e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "024fedaa-e2e4-4733-80db-1770ee4be916", "node_type": "1", "metadata": {"window": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. ", "original_text": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n"}, "hash": "3c59a209198ed6c00b2e6c2b05018152ae00266913a4e57719fe36ac0fe54ecc", "class_name": "RelatedNodeInfo"}}, "text": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n", "start_char_idx": 1172, "end_char_idx": 1420, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "024fedaa-e2e4-4733-80db-1770ee4be916": {"__data__": {"id_": "024fedaa-e2e4-4733-80db-1770ee4be916", "embedding": null, "metadata": {"window": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. ", "original_text": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f157ec57-6d4d-4539-a463-eaef48d39eaa", "node_type": "1", "metadata": {"window": "The \nBank is subject to applicable legislation designed to prevent ML/TF. This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . ", "original_text": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "a6496350e6dff9f6fd7a3079c3a69842cb190034b2948e9fc015ccdfb636f224", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "852347b8-c229-42b8-9261-bc9c6037ad24", "node_type": "1", "metadata": {"window": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n", "original_text": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n"}, "hash": "f4847315e93835dc7a92210d2c9a9a1c0ad0e18f0aaa1423de6fb7f5dbd6ff1d", "class_name": "RelatedNodeInfo"}}, "text": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n", "start_char_idx": 1420, "end_char_idx": 1785, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "852347b8-c229-42b8-9261-bc9c6037ad24": {"__data__": {"id_": "852347b8-c229-42b8-9261-bc9c6037ad24", "embedding": null, "metadata": {"window": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n", "original_text": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "024fedaa-e2e4-4733-80db-1770ee4be916", "node_type": "1", "metadata": {"window": "This legislation \nincludes Asset (Money) Laundering Prevention Act 2064, Asset (Money) Laundering \nPrevention Rules 2073, and NRB directives/circulars and amendments thereof issued from \ntime t o time. \n Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. ", "original_text": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "3a34b1b7989b884420ff919388778673cd90e923371a50c686c6a9ef9870dce9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7a64fd7d-9b41-4740-a3de-2b277f852653", "node_type": "1", "metadata": {"window": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. ", "original_text": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . "}, "hash": "15f468fc8b91ac9c52e6c87ea4bd14cc5a42cf00499289c710cf9e0b07a09cdd", "class_name": "RelatedNodeInfo"}}, "text": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n", "start_char_idx": 1785, "end_char_idx": 1977, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7a64fd7d-9b41-4740-a3de-2b277f852653": {"__data__": {"id_": "7a64fd7d-9b41-4740-a3de-2b277f852653", "embedding": null, "metadata": {"window": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. ", "original_text": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "852347b8-c229-42b8-9261-bc9c6037ad24", "node_type": "1", "metadata": {"window": "Further, the Bank acknowledges the FATF recommendations against criminal activities \nrelated to money laundering/terrorist financing and adopts appropriate mechanism to \naddress those recommendations to prevent the Bank being used for ML/TF activit ies. The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n", "original_text": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "c032192dafd05dcbf0df051650ff1996e1de9fef55bfa9fc502b182c4b0c29c2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a390b91f-efb8-4f77-9649-77a25276cf6b", "node_type": "1", "metadata": {"window": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. ", "original_text": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. "}, "hash": "a51c61ebafec15e7c7248d8fd638293752b5cbe3f9d5b9f3c02bffdd6041e28e", "class_name": "RelatedNodeInfo"}}, "text": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . ", "start_char_idx": 1977, "end_char_idx": 2085, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a390b91f-efb8-4f77-9649-77a25276cf6b": {"__data__": {"id_": "a390b91f-efb8-4f77-9649-77a25276cf6b", "embedding": null, "metadata": {"window": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. ", "original_text": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7a64fd7d-9b41-4740-a3de-2b277f852653", "node_type": "1", "metadata": {"window": "The \nBank is also committed to continually fulfill its anti -money laundering obligations to its \nforeign correspondent banks, which may also require bank to conduct due diligence on \nthem to ensure that they comply with the FATF recommendation. \n Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. ", "original_text": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "842fab7c54101550930584379f36124aabd6a735f732fd11d7ff2741c8983aa6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "48499d08-c18e-4ae7-a08e-14c6a8ce5534", "node_type": "1", "metadata": {"window": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . ", "original_text": "This is a revised Policy compatible with loca l and \ninternational regulations. \n"}, "hash": "26eb4f767cc7b7bd1be1340db765429243fc0f58af657650b29867b64bb3350c", "class_name": "RelatedNodeInfo"}}, "text": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. ", "start_char_idx": 2085, "end_char_idx": 2187, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "48499d08-c18e-4ae7-a08e-14c6a8ce5534": {"__data__": {"id_": "48499d08-c18e-4ae7-a08e-14c6a8ce5534", "embedding": null, "metadata": {"window": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . ", "original_text": "This is a revised Policy compatible with loca l and \ninternational regulations. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a390b91f-efb8-4f77-9649-77a25276cf6b", "node_type": "1", "metadata": {"window": "Hence, the Bank\u2019s policy on anti -money laundering, and counter financing of terrorism \n(hereinafter referred to as \u201cThe Policy\u201d), outlines the minimum general unified standards of \ninternal AML/CFT program which should be strictly adhered to by the Bank in o rder to \nmitigate the legal, regulatory, reputational, and subsequent operational and financial risks. \n In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. ", "original_text": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "fdce5f93d66991d1331fb7ac119be54b8fca513f30975e6b4edeb906bf415d4c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "120557fb-efb3-4afd-a575-fb950b4dde3e", "node_type": "1", "metadata": {"window": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n", "original_text": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. "}, "hash": "0823d7d2b48cd92483b4366f00f410fc0b5249172b8bc086625a929b42a21b9a", "class_name": "RelatedNodeInfo"}}, "text": "This is a revised Policy compatible with loca l and \ninternational regulations. \n", "start_char_idx": 2187, "end_char_idx": 2270, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "120557fb-efb3-4afd-a575-fb950b4dde3e": {"__data__": {"id_": "120557fb-efb3-4afd-a575-fb950b4dde3e", "embedding": null, "metadata": {"window": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n", "original_text": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "48499d08-c18e-4ae7-a08e-14c6a8ce5534", "node_type": "1", "metadata": {"window": "In order to mitigate the ML/TF risks, the Bank shall formulate guideline , controls and \nprocedures as deemed necessary to effectively manage such risks bas ed on principles of \nthe Policy. \n This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . ", "original_text": "This is a revised Policy compatible with loca l and \ninternational regulations. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "a53004908de17deaf99ca233c6d890a15c60253957db101a3dbab9ee6e923b97", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5d85bafc-9d1d-41e2-895a-d18e73e172ae", "node_type": "1", "metadata": {"window": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n", "original_text": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. "}, "hash": "aa0fcfeff4c51f7acabec2ca957efe5df4fcbf32ab4aa58d1a9c58d307b6722f", "class_name": "RelatedNodeInfo"}}, "text": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. ", "start_char_idx": 2270, "end_char_idx": 2420, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5d85bafc-9d1d-41e2-895a-d18e73e172ae": {"__data__": {"id_": "5d85bafc-9d1d-41e2-895a-d18e73e172ae", "embedding": null, "metadata": {"window": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n", "original_text": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "120557fb-efb3-4afd-a575-fb950b4dde3e", "node_type": "1", "metadata": {"window": "This Policy establishes standards which every employee and business partner of the Bank \nshould adhere to . BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n", "original_text": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "44f541cf7ae635983e318bd1cfef4730b64fc01647ec62455d3a07e020227b82", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2e61ba59-a7aa-4b65-926a-687ae86861e3", "node_type": "1", "metadata": {"window": "This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. ", "original_text": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . "}, "hash": "f1f35211c7585b6a381d7952447c10cb35e272104c4ceb9bef47cd0fa91a2f9f", "class_name": "RelatedNodeInfo"}}, "text": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. ", "start_char_idx": 2420, "end_char_idx": 2540, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2e61ba59-a7aa-4b65-926a-687ae86861e3": {"__data__": {"id_": "2e61ba59-a7aa-4b65-926a-687ae86861e3", "embedding": null, "metadata": {"window": "This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. ", "original_text": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5d85bafc-9d1d-41e2-895a-d18e73e172ae", "node_type": "1", "metadata": {"window": "BOD and all employees are under an obligation to implement the \nprovisions laid down in this Policy. This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n", "original_text": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4a2db50f98380e4456c0c4b2427729944cbc9d4b837ccaf6058d356856e29b22", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ca8ed9ab-36c3-4cc9-9200-a44281095748", "node_type": "1", "metadata": {"window": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n"}, "hash": "62b4276482b0eb1663c7c98ee9c375ac8f8644ca93581ef6179b0dbb65cc9565", "class_name": "RelatedNodeInfo"}}, "text": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . ", "start_char_idx": 2540, "end_char_idx": 2634, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ca8ed9ab-36c3-4cc9-9200-a44281095748": {"__data__": {"id_": "ca8ed9ab-36c3-4cc9-9200-a44281095748", "embedding": null, "metadata": {"window": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2e61ba59-a7aa-4b65-926a-687ae86861e3", "node_type": "1", "metadata": {"window": "This is a revised Policy compatible with loca l and \ninternational regulations. \n 1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. ", "original_text": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "d652295f9ca48154047baea3cb473524d3858f2bf2a457d1baaebe349ae2e08a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83f784f8-1769-4a12-a9fc-e66d75ebd146", "node_type": "1", "metadata": {"window": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n"}, "hash": "a3fc794f90bce3f76722d698323b62f19990405a01135b272df85ac718981234", "class_name": "RelatedNodeInfo"}}, "text": "There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n", "start_char_idx": 2634, "end_char_idx": 2818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83f784f8-1769-4a12-a9fc-e66d75ebd146": {"__data__": {"id_": "83f784f8-1769-4a12-a9fc-e66d75ebd146", "embedding": null, "metadata": {"window": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ca8ed9ab-36c3-4cc9-9200-a44281095748", "node_type": "1", "metadata": {"window": "1.2 Definitions of key terms \n1.2.1 Money Laundering \nMoney laundering is the process by which criminals disguise the illegal origin of \nthe funds. In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "d6161eda480eb02564074d70154f6c50fe2444661f04342dfbd1cd50e838cfe7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d358ea6f-d726-4852-b959-6b6f02b7f626", "node_type": "1", "metadata": {"window": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "c) Integration: It is the third stage of money laundering. "}, "hash": "054665b13c9818d29302448a33a0b5cae70ad44a9ed6352ef82d8f2ec077c0f1", "class_name": "RelatedNodeInfo"}}, "text": "b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n", "start_char_idx": 2818, "end_char_idx": 2990, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d358ea6f-d726-4852-b959-6b6f02b7f626": {"__data__": {"id_": "d358ea6f-d726-4852-b959-6b6f02b7f626", "embedding": null, "metadata": {"window": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "c) Integration: It is the third stage of money laundering. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83f784f8-1769-4a12-a9fc-e66d75ebd146", "node_type": "1", "metadata": {"window": "In simple words, it is the process of laundering black money for the \npurpose of converting the same into clean money. Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "fea781077ff161d4453d4d217465258a9ed38af5934cd6c6857d0e43bfa66705", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "77027437-a678-41be-b475-fb1d8b50057e", "node_type": "1", "metadata": {"window": "There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. "}, "hash": "d03f6efd352877e8a95eac1dc684537db3f277edac9142db9060d3ffdd76938a", "class_name": "RelatedNodeInfo"}}, "text": "c) Integration: It is the third stage of money laundering. ", "start_char_idx": 2990, "end_char_idx": 3049, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "77027437-a678-41be-b475-fb1d8b50057e": {"__data__": {"id_": "77027437-a678-41be-b475-fb1d8b50057e", "embedding": null, "metadata": {"window": "There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "00a8ff61-766b-425a-aa31-182b8d2366e6", "node_type": "4", "metadata": {"page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d358ea6f-d726-4852-b959-6b6f02b7f626", "node_type": "1", "metadata": {"window": "Money laundering is done by \nlaunderers worldwide to conceal funds from criminal activities . There are three \nstages of Money Laundering: \na) Placement: It is the first stage in money laundering where the cash proceeds \nof criminal activity enter into the financial system. \n b) Layering: It is the second stage in money laundering where attempts are \nmade to distance the money from its illegal source through layers of financial \ntransactions. \n c) Integration: It is the third stage of money laundering. This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "original_text": "c) Integration: It is the third stage of money laundering. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "hash": "ea2c43ba546aa06b6c0ed00b9e9dc7b6044ee74cfd4f73f9ea1faf6639f7c012", "class_name": "RelatedNodeInfo"}}, "text": "This stage involves the \nre-introduction of the illegal proceeds into legitimate commerce by providing \na legitimate -appearing explanation for the funds. ", "start_char_idx": 3049, "end_char_idx": 3205, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fa1fcd89-0316-4277-a96a-908337af1bcb": {"__data__": {"id_": "fa1fcd89-0316-4277-a96a-908337af1bcb", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "54e47b1b-5be0-423e-8358-83c8c815d142", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n", "original_text": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. "}, "hash": "7d24338ba4a32936b117ee5b966a441d91409c5b5f076f6092d2693d939182a3", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. ", "start_char_idx": 0, "end_char_idx": 207, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "54e47b1b-5be0-423e-8358-83c8c815d142": {"__data__": {"id_": "54e47b1b-5be0-423e-8358-83c8c815d142", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n", "original_text": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fa1fcd89-0316-4277-a96a-908337af1bcb", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "76c3e44af27c645360888412a9e174e9705a284ddcbfb71b2104f94328a887b6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "795741ac-cedf-4428-8f5e-165bd45b1a62", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. ", "original_text": "Funds may stem from both licit and \nillicit sources. "}, "hash": "7e36bd08c0d495e05120dc08b1bddc19dd19b62fd27e7d5458972cddf1e149d9", "class_name": "RelatedNodeInfo"}}, "text": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. ", "start_char_idx": 207, "end_char_idx": 379, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "795741ac-cedf-4428-8f5e-165bd45b1a62": {"__data__": {"id_": "795741ac-cedf-4428-8f5e-165bd45b1a62", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. ", "original_text": "Funds may stem from both licit and \nillicit sources. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "54e47b1b-5be0-423e-8358-83c8c815d142", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n", "original_text": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "30f57c382cad2bc138825f88dffb71cd480cfba3f82209337aa6bac57b95f9f0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83547562-e8ba-4313-93f1-fc33fd2e0cd7", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n", "original_text": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . "}, "hash": "f7bb83a5ec4869debed2a309a5cb13f7d8045e48f3e97e1762bc663fa60636d5", "class_name": "RelatedNodeInfo"}}, "text": "Funds may stem from both licit and \nillicit sources. ", "start_char_idx": 379, "end_char_idx": 433, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83547562-e8ba-4313-93f1-fc33fd2e0cd7": {"__data__": {"id_": "83547562-e8ba-4313-93f1-fc33fd2e0cd7", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n", "original_text": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "795741ac-cedf-4428-8f5e-165bd45b1a62", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. ", "original_text": "Funds may stem from both licit and \nillicit sources. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "7376fde9ea755e50ac8c2d8eeaefdb1bf6ef14633362afa6f88d47ab427f34ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a8fddcc6-b502-48a5-957e-099fdc6d5fdc", "node_type": "1", "metadata": {"window": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. ", "original_text": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n"}, "hash": "39a50e8a3599b447673a2f55a3aab76ffb9b0355a74d9d1b92cd04045dac918d", "class_name": "RelatedNodeInfo"}}, "text": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . ", "start_char_idx": 433, "end_char_idx": 888, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a8fddcc6-b502-48a5-957e-099fdc6d5fdc": {"__data__": {"id_": "a8fddcc6-b502-48a5-957e-099fdc6d5fdc", "embedding": null, "metadata": {"window": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. ", "original_text": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83547562-e8ba-4313-93f1-fc33fd2e0cd7", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n", "original_text": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "10e4d9667ad200af1261002f26463b676bcff7148eb4d0e37435e32c782b233b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d158c94d-fd03-4607-b7b2-b817dc6750ac", "node_type": "1", "metadata": {"window": "Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n", "original_text": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. "}, "hash": "57ebee141067cca236deeb73e8546550ebe7f071e5e6077d40fa04aaf011c617", "class_name": "RelatedNodeInfo"}}, "text": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n", "start_char_idx": 888, "end_char_idx": 1116, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d158c94d-fd03-4607-b7b2-b817dc6750ac": {"__data__": {"id_": "d158c94d-fd03-4607-b7b2-b817dc6750ac", "embedding": null, "metadata": {"window": "Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n", "original_text": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a8fddcc6-b502-48a5-957e-099fdc6d5fdc", "node_type": "1", "metadata": {"window": "Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. ", "original_text": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "62acfd6a7dbc3fe5b27dae2529ade5846ba60bdb0b7379da3f6ffb753234116c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "89375532-71c7-4ba7-a392-f09aaf08f2be", "node_type": "1", "metadata": {"window": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n", "original_text": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n"}, "hash": "277d5877fad0812fa65f8c39e26ae56f21b58e74eb9774ac0a512ed3aa9545ea", "class_name": "RelatedNodeInfo"}}, "text": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. ", "start_char_idx": 1116, "end_char_idx": 1750, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "89375532-71c7-4ba7-a392-f09aaf08f2be": {"__data__": {"id_": "89375532-71c7-4ba7-a392-f09aaf08f2be", "embedding": null, "metadata": {"window": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n", "original_text": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d158c94d-fd03-4607-b7b2-b817dc6750ac", "node_type": "1", "metadata": {"window": "Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n", "original_text": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "800e5e4928a9cd38a77b1a58441e7af7d978e9634bcf2d0550545c18e7f232c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367", "node_type": "1", "metadata": {"window": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n", "original_text": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. "}, "hash": "03e3d7ddb2adc6b62e674a9581cc92052d4e137a301aeefd8f1274dd8d0abebe", "class_name": "RelatedNodeInfo"}}, "text": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n", "start_char_idx": 1750, "end_char_idx": 1934, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367": {"__data__": {"id_": "9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367", "embedding": null, "metadata": {"window": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n", "original_text": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "89375532-71c7-4ba7-a392-f09aaf08f2be", "node_type": "1", "metadata": {"window": "More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n", "original_text": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "53852fcbc114d0a6fd2ebc5e1001ff35697b71ec2d4fc92e2f3206f8ce1161d4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "835d2923-71e0-4163-893a-caabe716e546", "node_type": "1", "metadata": {"window": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n", "original_text": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n"}, "hash": "782fce8d69b704878c689f2769e4179bd054cbf489fbf86d6d9d3ec7eaf614ef", "class_name": "RelatedNodeInfo"}}, "text": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. ", "start_char_idx": 1934, "end_char_idx": 2199, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "835d2923-71e0-4163-893a-caabe716e546": {"__data__": {"id_": "835d2923-71e0-4163-893a-caabe716e546", "embedding": null, "metadata": {"window": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n", "original_text": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367", "node_type": "1", "metadata": {"window": "The primary goal of individuals or \nentities involved in the financing of terrorism is therefore not necessarily to conceal \nthe sources of the money but to conceal both the financing and the nature of the \nfinanced activity. \n 1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n", "original_text": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "34033baae21bc9529481f3f098f59bbb4a3dcc28c3912476234614f1c0552cc1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ca32725c-6115-49db-913c-df3b07fa6beb", "node_type": "1", "metadata": {"window": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n", "original_text": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n"}, "hash": "62f3f33c329980218c9236a306ef00b7f52bc8a780cad80efe2d19b6979ed0bb", "class_name": "RelatedNodeInfo"}}, "text": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n", "start_char_idx": 2199, "end_char_idx": 2309, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ca32725c-6115-49db-913c-df3b07fa6beb": {"__data__": {"id_": "ca32725c-6115-49db-913c-df3b07fa6beb", "embedding": null, "metadata": {"window": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n", "original_text": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "835d2923-71e0-4163-893a-caabe716e546", "node_type": "1", "metadata": {"window": "1.2.3 Proliferation Financing \nProlife ration Financing refers to the act of providing funds or financial services \nwhich are used, in whole or in part, for the manufacture, acquisition, possession, \ndevelopment, export, trans -shipment, brokering, transport, transfer, stockpiling or \nuse of nuclea r, chemical or biological weapons and their means of delivery and \nrelated materials that would contribute to the Weapons of Mass Destruction (WMD) \nproliferation (including both technologies and dual use goods used for non -\nlegitimate purposes), in contraven tion of national laws or, where applicable, \ninternational obligations. Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n", "original_text": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "1fdaf633ea2c02ad419e2d2aa991ddd25cf20fdf5c25b464a403d5cdb692a612", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "578241bd-9f23-4439-a655-d30648805018", "node_type": "1", "metadata": {"window": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n", "original_text": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n"}, "hash": "9b78afc804b0c4e8dd5e334fceb2dbc98c0b07144b6b110b81ab022195972a01", "class_name": "RelatedNodeInfo"}}, "text": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n", "start_char_idx": 2309, "end_char_idx": 2536, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "578241bd-9f23-4439-a655-d30648805018": {"__data__": {"id_": "578241bd-9f23-4439-a655-d30648805018", "embedding": null, "metadata": {"window": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n", "original_text": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ca32725c-6115-49db-913c-df3b07fa6beb", "node_type": "1", "metadata": {"window": "Bank shall work towards raising awareness and be \nwatchful to providing funds or financial services which are not intended towards \nproliferation and proliferation financing of WMD. \n 1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n", "original_text": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "e3950ba71d7da21ec97906895af109df83a7e2e9c4d6680af8e4ed585deb5a92", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e14f6cb9-9e6c-4472-abf0-450c9619ec9f", "node_type": "1", "metadata": {"window": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "b) A person on behalf of whom an account is maintained (beneficial owner ). \n"}, "hash": "a417c3014418dca6eff77921f657ac6949dd81ef75ac64af5d58645d2e1678ba", "class_name": "RelatedNodeInfo"}}, "text": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n", "start_char_idx": 2536, "end_char_idx": 2728, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e14f6cb9-9e6c-4472-abf0-450c9619ec9f": {"__data__": {"id_": "e14f6cb9-9e6c-4472-abf0-450c9619ec9f", "embedding": null, "metadata": {"window": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "b) A person on behalf of whom an account is maintained (beneficial owner ). \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "578241bd-9f23-4439-a655-d30648805018", "node_type": "1", "metadata": {"window": "1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) \nAML/CFT is a term used in the industr y to describe the legal controls that require \nthe financial institutions and other regulated entities to prevent, detect, and report \nML/TF activities. The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n", "original_text": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "ebfb4da69be4cd34fd7e4498bec3d9be3284796e050a42b02f8d9d4a88105f3a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10", "node_type": "1", "metadata": {"window": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n"}, "hash": "d8c9ece7eeefd8493eb2f7395042c0edefda64060a04cbb1e084faccaea1effd", "class_name": "RelatedNodeInfo"}}, "text": "b) A person on behalf of whom an account is maintained (beneficial owner ). \n", "start_char_idx": 2728, "end_char_idx": 2806, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10": {"__data__": {"id_": "914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10", "embedding": null, "metadata": {"window": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e14f6cb9-9e6c-4472-abf0-450c9619ec9f", "node_type": "1", "metadata": {"window": "The Bank has implemented standard KYC norms to prevent, \ndetect and report of ML/TF activities to the FIU. \n 1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "b) A person on behalf of whom an account is maintained (beneficial owner ). \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "a49111566613ceccc038a55e516f3fd8769cedbfbd16076352eccd0bc3cdd1c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2bd791d3-6858-47f9-865f-388dac32fac6", "node_type": "1", "metadata": {"window": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n"}, "hash": "65e4099dded9c9055e52e6639eefd9767d9d1dac1a3149caeafb5a4203729a91", "class_name": "RelatedNodeInfo"}}, "text": "c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n", "start_char_idx": 2806, "end_char_idx": 2943, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2bd791d3-6858-47f9-865f-388dac32fac6": {"__data__": {"id_": "2bd791d3-6858-47f9-865f-388dac32fac6", "embedding": null, "metadata": {"window": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10", "node_type": "1", "metadata": {"window": "1.2.5 Trade based money laundering \nTrade based money laundering is the process of disguising the proceeds of crime and \nmoving value through the use of trade transactions in an attempt to legitimize their \nillegal origins. \n 1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "978abf2736fa531618e5a983cb21e4b69a602ac75d0cbc0b688ed5860b29549b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef", "node_type": "1", "metadata": {"window": "b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "Appointment of local agent or presence of its staff(s) does not constitute physical "}, "hash": "c786b8ce0dabf99fdd4ca78a1aee1183188a3944a4626ddee5bb78f79e13d39a", "class_name": "RelatedNodeInfo"}}, "text": "1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n", "start_char_idx": 2943, "end_char_idx": 3228, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef": {"__data__": {"id_": "c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef", "embedding": null, "metadata": {"window": "b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "Appointment of local agent or presence of its staff(s) does not constitute physical ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8", "node_type": "4", "metadata": {"page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2bd791d3-6858-47f9-865f-388dac32fac6", "node_type": "1", "metadata": {"window": "1.2.6 Customers \nCustomers of the bank shall denote any of the followings: \na) A person or entity that maintains an account with the Bank and/or has \nbusiness relationship with the Bank. \n b) A person on behalf of whom an account is maintained (beneficial owner ). \n c) Any person or entity connected with the financial transaction that may impose \nsignificant reputational or other risks to the Bank. \n 1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n Appointment of local agent or presence of its staff(s) does not constitute physical ", "original_text": "1.2.7 Shell bank and shell entity \nA shell bank means a financial institution that has no physical presence in the \ncountry in which it is incorporated and licensed and which is unaffiliated with a \nregula ted financial group that is subject to effective consolidated supervision. \n", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "hash": "54e4f25a6f715035eefce13c06889f311e743d0a2daeace7e8bf3154803f9ce3", "class_name": "RelatedNodeInfo"}}, "text": "Appointment of local agent or presence of its staff(s) does not constitute physical ", "start_char_idx": 3228, "end_char_idx": 3312, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "101abeec-50d2-415c-bd60-6b01f5634c97": {"__data__": {"id_": "101abeec-50d2-415c-bd60-6b01f5634c97", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a8b43d44-7ec4-40ac-a16a-3befd53e8c65", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . ", "original_text": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. "}, "hash": "48935bcfb0fa1f8fe8e5d7dc8894eff1e7478de14e7cd564f475192871a2fd48", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n", "start_char_idx": 0, "end_char_idx": 151, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a8b43d44-7ec4-40ac-a16a-3befd53e8c65": {"__data__": {"id_": "a8b43d44-7ec4-40ac-a16a-3befd53e8c65", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . ", "original_text": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "101abeec-50d2-415c-bd60-6b01f5634c97", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "7411edc15bd0d8d570f7cd497c424ba8f2c96e468695ccfd3e6815cf1b2bd081", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8273a425-c99f-49b4-9db3-121013f2933d", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n", "original_text": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n"}, "hash": "c100ab80ab041a64636935c91dc4ffa62a7b846b19049ffce5e8e9f6a0e66872", "class_name": "RelatedNodeInfo"}}, "text": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. ", "start_char_idx": 151, "end_char_idx": 358, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8273a425-c99f-49b4-9db3-121013f2933d": {"__data__": {"id_": "8273a425-c99f-49b4-9db3-121013f2933d", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n", "original_text": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a8b43d44-7ec4-40ac-a16a-3befd53e8c65", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . ", "original_text": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "8d25860137579e8f3a57709e42f42ec0f05c05b6124ed958aa2ef1aac155d9e0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b88f77c1-2044-4a9f-b790-573fc3c5c12b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. ", "original_text": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n"}, "hash": "aee9f6c9020efa0df2d6b792076e96382e673c92eb1c7c18aa64983dda1a1ff5", "class_name": "RelatedNodeInfo"}}, "text": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n", "start_char_idx": 358, "end_char_idx": 514, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b88f77c1-2044-4a9f-b790-573fc3c5c12b": {"__data__": {"id_": "b88f77c1-2044-4a9f-b790-573fc3c5c12b", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. ", "original_text": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8273a425-c99f-49b4-9db3-121013f2933d", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n", "original_text": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "86c42231e1fc55d8d27c4ff71b47f9803f4076b9e528bda8f19ce6240dc83dea", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87039a66-6d37-483a-bff7-4432cc531908", "node_type": "1", "metadata": {"window": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n", "original_text": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . "}, "hash": "a47f2a22235d6b0dbf29d86578dbbd67a01887c6168a1cb5602c27e64e30af37", "class_name": "RelatedNodeInfo"}}, "text": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n", "start_char_idx": 514, "end_char_idx": 962, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87039a66-6d37-483a-bff7-4432cc531908": {"__data__": {"id_": "87039a66-6d37-483a-bff7-4432cc531908", "embedding": null, "metadata": {"window": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n", "original_text": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b88f77c1-2044-4a9f-b790-573fc3c5c12b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. ", "original_text": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "3f298ff3eee7f7e9927ac6636348dafbe777250a6fbf277ef901a8d84698308e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d2e036ec-ad7f-4f9c-919f-08e95b238f42", "node_type": "1", "metadata": {"window": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n"}, "hash": "9a548468b7f1c1faa5fe22bc8df4200078b7d349207c77fce608e6230deefe2f", "class_name": "RelatedNodeInfo"}}, "text": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . ", "start_char_idx": 962, "end_char_idx": 1139, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d2e036ec-ad7f-4f9c-919f-08e95b238f42": {"__data__": {"id_": "d2e036ec-ad7f-4f9c-919f-08e95b238f42", "embedding": null, "metadata": {"window": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "87039a66-6d37-483a-bff7-4432cc531908", "node_type": "1", "metadata": {"window": "1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n", "original_text": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "125c6770e23bca4377cb3dac926b02ed708aa3537f079fe36accb16dbd3d746e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "476681b8-7b69-4a34-a6d2-809fc653b8bf", "node_type": "1", "metadata": {"window": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. "}, "hash": "79c7f6f677d11a16c2bd2451fe42f9aa9852aecf6310417670f5b3ac07ec416b", "class_name": "RelatedNodeInfo"}}, "text": "The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n", "start_char_idx": 1139, "end_char_idx": 1359, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "476681b8-7b69-4a34-a6d2-809fc653b8bf": {"__data__": {"id_": "476681b8-7b69-4a34-a6d2-809fc653b8bf", "embedding": null, "metadata": {"window": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d2e036ec-ad7f-4f9c-919f-08e95b238f42", "node_type": "1", "metadata": {"window": "Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "5fed1539d01375ac7bd74057b3587020464206c8a0f55183d2a064c899b4d0fe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b6bac391-46af-49b8-ac76-55b9ea0a3f10", "node_type": "1", "metadata": {"window": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n"}, "hash": "09ee7c93115153f4237037b4be3baac23f5a225e1a00966da88d7e95552e13d0", "class_name": "RelatedNodeInfo"}}, "text": "1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. ", "start_char_idx": 1359, "end_char_idx": 1725, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b6bac391-46af-49b8-ac76-55b9ea0a3f10": {"__data__": {"id_": "b6bac391-46af-49b8-ac76-55b9ea0a3f10", "embedding": null, "metadata": {"window": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "476681b8-7b69-4a34-a6d2-809fc653b8bf", "node_type": "1", "metadata": {"window": "1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n 1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "85afad0428a2c2b9be5d3c71ee8fa159ed67a3470d803ee1853995f307b4c157", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4e342ed1-90d4-4470-95d3-1ca6c00677d9", "node_type": "1", "metadata": {"window": "The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office "}, "hash": "341bfdf831c82f6f43f037ba704b461038352a9422ed5f52782098a2957797a0", "class_name": "RelatedNodeInfo"}}, "text": "The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n", "start_char_idx": 1725, "end_char_idx": 1882, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4e342ed1-90d4-4470-95d3-1ca6c00677d9": {"__data__": {"id_": "4e342ed1-90d4-4470-95d3-1ca6c00677d9", "embedding": null, "metadata": {"window": "The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe", "node_type": "4", "metadata": {"page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b6bac391-46af-49b8-ac76-55b9ea0a3f10", "node_type": "1", "metadata": {"window": "1.3 Objective \nThe objective of this Policy is to prevent the Bank from being used for ML/TF activities by \nestablishing a sound risk management policy framework of the Bank . The policy framework \nshall encompass the mechanisms for identifying ML/TF risks faced by the Bank, NRB \nguidance, requirements of law, including international AML/CFT standards and as guided \nby FATF recommendations. \n 1.4 Governance Structure \nFor effective implementation of The Policy, a governance stru cture including Board of \nDirectors (BOD) , and Senior M anagement has been designed as under: \n \n1.4.1 Board of Directors \nAML/CFT risk management is an important aspect of overall risk management of \nthe Bank and BOD are an integral part of AML/CFT governance structure. The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n 1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "original_text": "The \nBOD is responsible for policy formation as well as ensuring effective \nimplementation of such policies and procedures by the management of the Bank. \n \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "hash": "58c352aaecb8073dbe9bb55d4104f698f7ca5f435a357b398aec10eccec4b58c", "class_name": "RelatedNodeInfo"}}, "text": "1 ALPA \u2013 Chapter 1, Clause (2)(LA) \n2 ALPA \u2013 Chapter 8, Clause (44 KA) \nBoard of Directors \nChief Executive Officer \nChief Risk and Compliance Officer \nMLRO \n(AML / CFT Unit) \nBranch /Department AML Officer \nAsset (Money) Laundering \nPrevention Committee \nAML/CFT Committee \nHead - Provincial Office ", "start_char_idx": 1882, "end_char_idx": 2195, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "71c4a3bc-6635-44e1-80a1-0e8deef0d767": {"__data__": {"id_": "71c4a3bc-6635-44e1-80a1-0e8deef0d767", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2db9c2b8-f85c-463d-9f24-ebd8e9727fd5", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n", "original_text": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. "}, "hash": "dd694a38ab081e2188509692b26a6649e616f0f35122cd7c1001b26593e5a9b8", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n", "start_char_idx": 0, "end_char_idx": 178, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2db9c2b8-f85c-463d-9f24-ebd8e9727fd5": {"__data__": {"id_": "2db9c2b8-f85c-463d-9f24-ebd8e9727fd5", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n", "original_text": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "71c4a3bc-6635-44e1-80a1-0e8deef0d767", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2f968529fdcb37420f9551c0099ea3621990ee4e40e4a3a98b2cf18139dd7b94", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c6d0c05-1650-4b0e-9a43-a2e793804053", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n", "original_text": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n"}, "hash": "ff7542698a8239f76bffca381798f241c113e77fa6875c99f3fec813df4d6fe7", "class_name": "RelatedNodeInfo"}}, "text": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. ", "start_char_idx": 178, "end_char_idx": 395, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9c6d0c05-1650-4b0e-9a43-a2e793804053": {"__data__": {"id_": "9c6d0c05-1650-4b0e-9a43-a2e793804053", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n", "original_text": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2db9c2b8-f85c-463d-9f24-ebd8e9727fd5", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n", "original_text": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "6e5368dfd9b620422f9a2bcf41a29f612800b468d60542dc035700c1f9d08dcd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "74d6bdca-a349-435b-9efe-0beaeed635a1", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . ", "original_text": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . "}, "hash": "043dd169c28ac1ad5f826a3dfb510c6b2a335ef8f583ba7e64e53f87ed9837ef", "class_name": "RelatedNodeInfo"}}, "text": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n", "start_char_idx": 395, "end_char_idx": 624, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "74d6bdca-a349-435b-9efe-0beaeed635a1": {"__data__": {"id_": "74d6bdca-a349-435b-9efe-0beaeed635a1", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . ", "original_text": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9c6d0c05-1650-4b0e-9a43-a2e793804053", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n", "original_text": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "f8dcd5f11640c304fd56e68506f31f865353382097bd2f3d7c2e0474cea740ad", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a3298b90-49cf-4b41-a0d9-17cc2a67baca", "node_type": "1", "metadata": {"window": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . ", "original_text": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n"}, "hash": "90a4d8bf4ea208511e3f7988afef2e154df8bb2dbc9825780750569bf05ac8e0", "class_name": "RelatedNodeInfo"}}, "text": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . ", "start_char_idx": 624, "end_char_idx": 791, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a3298b90-49cf-4b41-a0d9-17cc2a67baca": {"__data__": {"id_": "a3298b90-49cf-4b41-a0d9-17cc2a67baca", "embedding": null, "metadata": {"window": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . ", "original_text": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "74d6bdca-a349-435b-9efe-0beaeed635a1", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . ", "original_text": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "c976e29d6c2aacedf8446254f7739a7b1ca8ad9bb9d87982c92a074ca2a1c596", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1e4b3a13-4e82-4e88-8799-8d02597cd960", "node_type": "1", "metadata": {"window": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n", "original_text": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n"}, "hash": "e8e80a5bf21251f9f7d953ab36c4c5c9a3c9257bd0562b3710ddbc0379efc0b0", "class_name": "RelatedNodeInfo"}}, "text": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n", "start_char_idx": 791, "end_char_idx": 1061, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e4b3a13-4e82-4e88-8799-8d02597cd960": {"__data__": {"id_": "1e4b3a13-4e82-4e88-8799-8d02597cd960", "embedding": null, "metadata": {"window": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n", "original_text": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a3298b90-49cf-4b41-a0d9-17cc2a67baca", "node_type": "1", "metadata": {"window": "1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . ", "original_text": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "f8e14e50853f143e3bd783c500cbd11010b7c017c10fbe2743c8549c86d5032f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d72266a3-fc2b-4dc5-9db2-4f7278b30167", "node_type": "1", "metadata": {"window": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. ", "original_text": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . "}, "hash": "bf4a787f8df427e1219735eab4b91e3802a1684b9fbe8590c1266ef81dc2f5a1", "class_name": "RelatedNodeInfo"}}, "text": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n", "start_char_idx": 1061, "end_char_idx": 1254, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d72266a3-fc2b-4dc5-9db2-4f7278b30167": {"__data__": {"id_": "d72266a3-fc2b-4dc5-9db2-4f7278b30167", "embedding": null, "metadata": {"window": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. ", "original_text": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1e4b3a13-4e82-4e88-8799-8d02597cd960", "node_type": "1", "metadata": {"window": "Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n", "original_text": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "bcba13aa178d4fcc83d61f8217f39c0532a28391f45f812bfb53613c46968949", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "797816ac-6fc2-4453-b294-c5da10cbf4ab", "node_type": "1", "metadata": {"window": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. ", "original_text": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . "}, "hash": "2dfb51c89e64da52c6824f1eb094ec01110dde6b757621da8e7585f489c17511", "class_name": "RelatedNodeInfo"}}, "text": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . ", "start_char_idx": 1254, "end_char_idx": 1403, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "797816ac-6fc2-4453-b294-c5da10cbf4ab": {"__data__": {"id_": "797816ac-6fc2-4453-b294-c5da10cbf4ab", "embedding": null, "metadata": {"window": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. ", "original_text": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d72266a3-fc2b-4dc5-9db2-4f7278b30167", "node_type": "1", "metadata": {"window": "1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. ", "original_text": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "ffe53fdd9b58c9b6142ccfc4d85c5ac719fd1e4b84432f1d1964ba78b8b5e363", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bca215d8-8f5d-4550-bee2-ca746b34b1c7", "node_type": "1", "metadata": {"window": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. ", "original_text": "The meeting shall be held at least once in every 3 month s or as required. \n"}, "hash": "d866c48bb92af2a2f3b9bcf02ad9768c1698921a598919558fae5f1617a5f012", "class_name": "RelatedNodeInfo"}}, "text": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . ", "start_char_idx": 1403, "end_char_idx": 1491, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bca215d8-8f5d-4550-bee2-ca746b34b1c7": {"__data__": {"id_": "bca215d8-8f5d-4550-bee2-ca746b34b1c7", "embedding": null, "metadata": {"window": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. ", "original_text": "The meeting shall be held at least once in every 3 month s or as required. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "797816ac-6fc2-4453-b294-c5da10cbf4ab", "node_type": "1", "metadata": {"window": "The \nManager AML/CFT shall be called as Money Laundering Reporting Officer (MLRO) \nand shall be responsible for evaluating a nd strengthening the effectiveness of set \ncontrols and internal systems of the Bank to help identify , monitor and report ML/TF \nactivities . \n 1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. ", "original_text": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "7c1b6f06d8cb03688a451e248ec49223d570d9250f18c4b070125dfcdf484133", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2af8640e-5a53-47c2-a938-9f9695cd7c76", "node_type": "1", "metadata": {"window": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n", "original_text": "A board member shall be the coordinator of this committee. "}, "hash": "e564300b00f585fd90488253c302bc871e64d50fc6830937b79ceabb8bfd4d8d", "class_name": "RelatedNodeInfo"}}, "text": "The meeting shall be held at least once in every 3 month s or as required. \n", "start_char_idx": 1491, "end_char_idx": 1568, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2af8640e-5a53-47c2-a938-9f9695cd7c76": {"__data__": {"id_": "2af8640e-5a53-47c2-a938-9f9695cd7c76", "embedding": null, "metadata": {"window": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n", "original_text": "A board member shall be the coordinator of this committee. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bca215d8-8f5d-4550-bee2-ca746b34b1c7", "node_type": "1", "metadata": {"window": "1.4.4 Asset (Money) Laundering Prevention Committee \nThe Bank shall have a Board level Asset (Money) L aundering Prevention \nCommittee which is constituted in line with the NRB Directives. \n The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. ", "original_text": "The meeting shall be held at least once in every 3 month s or as required. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "af10caa4fdb999bb5d46b65fd41f4c185bb91876415c675b49ec0b7aae8c253c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f8bf4db5-78de-4d72-a5e3-33c83fc8c734", "node_type": "1", "metadata": {"window": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. ", "original_text": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. "}, "hash": "89c270fe2a57d8bfe4495212b5ccfe4c68c2a65ea8a63fd07693b24ebbd95252", "class_name": "RelatedNodeInfo"}}, "text": "A board member shall be the coordinator of this committee. ", "start_char_idx": 1568, "end_char_idx": 1628, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f8bf4db5-78de-4d72-a5e3-33c83fc8c734": {"__data__": {"id_": "f8bf4db5-78de-4d72-a5e3-33c83fc8c734", "embedding": null, "metadata": {"window": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. ", "original_text": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2af8640e-5a53-47c2-a938-9f9695cd7c76", "node_type": "1", "metadata": {"window": "The Committee highlights on risk governance and identifies the need for a strong \nand well-defined ML/TF risk management framework and mechanisms . The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n", "original_text": "A board member shall be the coordinator of this committee. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "84b178423fe2e79bb17c61155c8efafd19b7f014256d421cd1d3b36ffb954717", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44888967-ba3f-442c-9d7b-802d7ca43e44", "node_type": "1", "metadata": {"window": "The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. ", "original_text": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. "}, "hash": "acf0d99501f1c8172bc543b61cc32b70cac53158313eca6903b607c02fe9dcf0", "class_name": "RelatedNodeInfo"}}, "text": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. ", "start_char_idx": 1628, "end_char_idx": 1806, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "44888967-ba3f-442c-9d7b-802d7ca43e44": {"__data__": {"id_": "44888967-ba3f-442c-9d7b-802d7ca43e44", "embedding": null, "metadata": {"window": "The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. ", "original_text": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8bf4db5-78de-4d72-a5e3-33c83fc8c734", "node_type": "1", "metadata": {"window": "The \nCommittee shall review the AML/CFT Policy and recommend for approval to the \nBOD . The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. ", "original_text": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "675fd6e0df11d0090e466910c8f3cdbfa423bf9db2b25bf306b4ce27bcc1c8d9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dc28745b-ce90-456e-83b0-3718ac471b7f", "node_type": "1", "metadata": {"window": "A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n"}, "hash": "bffa5689d0f9d232425bbe2b494e57518cceb4b4af5ae495440d97b87e453cf0", "class_name": "RelatedNodeInfo"}}, "text": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. ", "start_char_idx": 1806, "end_char_idx": 1889, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dc28745b-ce90-456e-83b0-3718ac471b7f": {"__data__": {"id_": "dc28745b-ce90-456e-83b0-3718ac471b7f", "embedding": null, "metadata": {"window": "A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44888967-ba3f-442c-9d7b-802d7ca43e44", "node_type": "1", "metadata": {"window": "The meeting shall be held at least once in every 3 month s or as required. \n A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. ", "original_text": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "82fbc8778bb9a0e62e77a24980e6b542d881f8fb0b09149395bc55a95e1515e1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "14eda487-be69-46a6-8dd9-740d35cc7fe3", "node_type": "1", "metadata": {"window": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. "}, "hash": "032f318cfcc0f96f342a9ba1ee56baaea8435664d880af2c0ddadbc85b8f4fb3", "class_name": "RelatedNodeInfo"}}, "text": "The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n", "start_char_idx": 1889, "end_char_idx": 2235, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "14eda487-be69-46a6-8dd9-740d35cc7fe3": {"__data__": {"id_": "14eda487-be69-46a6-8dd9-740d35cc7fe3", "embedding": null, "metadata": {"window": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dc28745b-ce90-456e-83b0-3718ac471b7f", "node_type": "1", "metadata": {"window": "A board member shall be the coordinator of this committee. In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "b5af45e9e2b595762af85b7de78f1529be531ff2f494b79765076f35eec98cf6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6e741f83-1a55-4964-a39a-1735a998cd6d", "node_type": "1", "metadata": {"window": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. "}, "hash": "21dcbd1c0fa81ccba193b772ccfcbda087745660b2a9881e89f59524049b876b", "class_name": "RelatedNodeInfo"}}, "text": "1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. ", "start_char_idx": 2235, "end_char_idx": 2320, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6e741f83-1a55-4964-a39a-1735a998cd6d": {"__data__": {"id_": "6e741f83-1a55-4964-a39a-1735a998cd6d", "embedding": null, "metadata": {"window": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "14eda487-be69-46a6-8dd9-740d35cc7fe3", "node_type": "1", "metadata": {"window": "In absence of the \ncoordinator , the remaining board member shall conduct the meeting as \nCoordinator and in the absence of Member Secretary, CCO shall act as Member \nSecretary. The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "7a74df17335c95b8b050cc326e430199370275d363727ed1ec235f3a4c3bac48", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "40a841c0-27b9-4105-8dc6-3454da3e3bd8", "node_type": "1", "metadata": {"window": "The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "6/078, Clause (7) (5) "}, "hash": "65fa0c1c18d7ba07459bc0d29aaecba221198473a00eeeca9516c988898eb3cd", "class_name": "RelatedNodeInfo"}}, "text": "The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. ", "start_char_idx": 2320, "end_char_idx": 2636, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "40a841c0-27b9-4105-8dc6-3454da3e3bd8": {"__data__": {"id_": "40a841c0-27b9-4105-8dc6-3454da3e3bd8", "embedding": null, "metadata": {"window": "The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "6/078, Clause (7) (5) ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b", "node_type": "4", "metadata": {"page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6e741f83-1a55-4964-a39a-1735a998cd6d", "node_type": "1", "metadata": {"window": "The quorum necessitates a simple majo rity of the total members of the \ncommittee. The Committee comprises of the following members: \nBoard Member - Coordinator \nBoard Member - Member \nChief Risk Officer - Member \nChief Compliance Officer - Member \nMLRO - Member Secretary \nTerms of Reference (TOR) of the Committee shall be as per Unified Directive \nissued by NRB regarding Corporate Governance4. \n 1.4.5 AML/CFT Committee \nThe Bank shall have a management level AML/CFT Committee. The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. 6/078, Clause (7) (5) ", "original_text": "The purpose of \nthe committee shall be \na. To assess, review , and monitor the status of the Bank\u2019s standing on \ncomplying with KYC principle, \nb. To ensure effective implementation of The Policy through a standard \nguideline , \n \n3 ALPA \u2013 Chapter 3, Clause ( 7)(TA)(3) \n4 Unified Directive 2078, directive no. ", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "hash": "81d6f1bd8a030f73ff1b71c9fcea3025b1c1e4435a7eb51ecdf50207389f0515", "class_name": "RelatedNodeInfo"}}, "text": "6/078, Clause (7) (5) ", "start_char_idx": 2636, "end_char_idx": 2659, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a": {"__data__": {"id_": "0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4ffb13a4-79e2-4307-ae24-d806775763c3", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. ", "original_text": "The meeting shall be held at least once \nin every 3 months or as required. \n"}, "hash": "5d0958e0df62693e274a228c88dbb62cd6961d894c462e82be6e2da5b1b0ad9c", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . ", "start_char_idx": 0, "end_char_idx": 320, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4ffb13a4-79e2-4307-ae24-d806775763c3": {"__data__": {"id_": "4ffb13a4-79e2-4307-ae24-d806775763c3", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. ", "original_text": "The meeting shall be held at least once \nin every 3 months or as required. \n", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "4d8a5039f1ed6cbf8bd48baf66aca2dff60f627c657933c688d8d70cd8a0e520", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6be1f85e-83be-4483-8b86-92c8725356a9", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. ", "original_text": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. "}, "hash": "98cac7f35e946d4e4646ca945ce0658383991aaa088e022cef8abf51a6aa96d5", "class_name": "RelatedNodeInfo"}}, "text": "The meeting shall be held at least once \nin every 3 months or as required. \n", "start_char_idx": 320, "end_char_idx": 397, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6be1f85e-83be-4483-8b86-92c8725356a9": {"__data__": {"id_": "6be1f85e-83be-4483-8b86-92c8725356a9", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. ", "original_text": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4ffb13a4-79e2-4307-ae24-d806775763c3", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. ", "original_text": "The meeting shall be held at least once \nin every 3 months or as required. \n", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "157228bcc5ad667038723a25d2c147a4471f522cd316216a66b001862c4bc675", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c271474a-b01e-4dde-806e-7f88aea2f469", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. ", "original_text": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. "}, "hash": "fd14d63faaf48a4af41823bcf8836fd239fafd79c692600d659d60e0982a1e09", "class_name": "RelatedNodeInfo"}}, "text": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. ", "start_char_idx": 397, "end_char_idx": 474, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c271474a-b01e-4dde-806e-7f88aea2f469": {"__data__": {"id_": "c271474a-b01e-4dde-806e-7f88aea2f469", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. ", "original_text": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6be1f85e-83be-4483-8b86-92c8725356a9", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. ", "original_text": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "d839d5ddcc96d9afd03287aec826504ea81035d635828a34d0020cc294850a35", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7c252836-73d8-4243-8506-264c8086427a", "node_type": "1", "metadata": {"window": "The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "In absence of Member Secretary, \nCCO shall act as Member Secretary. "}, "hash": "987b0532965657df016211132b8dffb4d3a242a77a6610fc09c5e622efddd15a", "class_name": "RelatedNodeInfo"}}, "text": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. ", "start_char_idx": 474, "end_char_idx": 680, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c252836-73d8-4243-8506-264c8086427a": {"__data__": {"id_": "7c252836-73d8-4243-8506-264c8086427a", "embedding": null, "metadata": {"window": "The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "In absence of Member Secretary, \nCCO shall act as Member Secretary. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c271474a-b01e-4dde-806e-7f88aea2f469", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. ", "original_text": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b5df174732e8838de03677d1e1ef271caba80757fe8641a8d7243d5fd71bd162", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "72335e90-0cfc-416a-bc36-58b99175d085", "node_type": "1", "metadata": {"window": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "The quorum necessitates a simple major ity \nof the total members of the committee. "}, "hash": "a0071b646b93af09bc7df39d6fc2b5d3f22aafb3fe76147669816451abc22cfc", "class_name": "RelatedNodeInfo"}}, "text": "In absence of Member Secretary, \nCCO shall act as Member Secretary. ", "start_char_idx": 680, "end_char_idx": 748, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "72335e90-0cfc-416a-bc36-58b99175d085": {"__data__": {"id_": "72335e90-0cfc-416a-bc36-58b99175d085", "embedding": null, "metadata": {"window": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "The quorum necessitates a simple major ity \nof the total members of the committee. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7c252836-73d8-4243-8506-264c8086427a", "node_type": "1", "metadata": {"window": "The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "In absence of Member Secretary, \nCCO shall act as Member Secretary. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "15dce20f2c83b34b86114aea68bea86cb76c43e0c7e2bc2bc086f34e8250a5ce", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "09bc1af2-b295-43b7-91c8-008573646a0d", "node_type": "1", "metadata": {"window": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. "}, "hash": "731c1df7fd68d8654ae0d8ece0c9d20ecb3eec8e403c03851fb203b085441d84", "class_name": "RelatedNodeInfo"}}, "text": "The quorum necessitates a simple major ity \nof the total members of the committee. ", "start_char_idx": 748, "end_char_idx": 831, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "09bc1af2-b295-43b7-91c8-008573646a0d": {"__data__": {"id_": "09bc1af2-b295-43b7-91c8-008573646a0d", "embedding": null, "metadata": {"window": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "72335e90-0cfc-416a-bc36-58b99175d085", "node_type": "1", "metadata": {"window": "Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "The quorum necessitates a simple major ity \nof the total members of the committee. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "6b753c1eefd1566afa98af409ae39e72fcbeeb9914e83e17c3c8b63c1672a982", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "468e2ecf-5ca8-4831-a045-858601970464", "node_type": "1", "metadata": {"window": "In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit "}, "hash": "5de7d6326de807589e46e5dfea44e82fadad51f5663f123672b3dfcc8f4a6f0f", "class_name": "RelatedNodeInfo"}}, "text": "The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. ", "start_char_idx": 831, "end_char_idx": 1540, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "468e2ecf-5ca8-4831-a045-858601970464": {"__data__": {"id_": "468e2ecf-5ca8-4831-a045-858601970464", "embedding": null, "metadata": {"window": "In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "e4df6583-ff3d-44e3-9497-4f8634359a67", "node_type": "4", "metadata": {"page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "09bc1af2-b295-43b7-91c8-008573646a0d", "node_type": "1", "metadata": {"window": "In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. In absence of Member Secretary, \nCCO shall act as Member Secretary. The quorum necessitates a simple major ity \nof the total members of the committee. The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "original_text": "The Committee comprises of the following \nmembers: \nSenior Deputy Chief Executive Officer - Coordinator \nDeputy Chief Executive Officer - Member \nChief Operating Officer - Member \nChief Business Officer - Member \nChief Compliance Officer - Member \nChief Risk Officer - Member \nChief Information Technology Officer - Member \nChief of Country Operations - Member \nChief Marketing Officer - Member \nMLRO - Member Secretary \n1.4.6 Three -line-of-defense \nIn order to facilitate timely detection of problems that exposes the bank towards \nhigher ML/TF risks thereby limiting the damage to the Bank, an effective internal \ncontrol system shall be in place. ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "hash": "5b72baf8bcb06d24af183c70d81bc299df0b782ecf6b96eb2475ef290b69cc50", "class_name": "RelatedNodeInfo"}}, "text": "Following the best practices, the Bank shall \nimplement three lines of defense as part of the effective risk management from \nAML/CFT aspect: \n \n \n \n \n \n \n \n \n \n \n Board of Directors \nAsset (Money) Laundering Prevention Committee \nCEO and Senior Management \nAML/CFT Committee \n1st line of defense \nAccountable for \neffective ML/TF risks \nmanagement arising \nfrom the business in \nwhich they are involved 2nd line of defense \nDevelop and implement \nrisk management \nframework that includes \nidentifying, assessing, \ncontrolling, monitoring, \nand reporting 3rd line of defense \nReview effectiveness of \nrisk management \npractices, recommend \nimprovements and \nenforce corrective \nactions if necessary \nFront Line Business \nBranch Managers, \nOperations In -charge, \nDepartment Heads/Unit \nHeads, Province Heads Risk Management \nCCO, CRO, COO, CIT, \nMLRO , \nBranch /Department \nAML Officer Internal Audit \nChief -Internal Audit ", "start_char_idx": 1540, "end_char_idx": 2485, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c6e72421-0c17-4c05-85ce-2010d1df2cea": {"__data__": {"id_": "c6e72421-0c17-4c05-85ce-2010d1df2cea", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "603ea3c1-06dc-4f3b-944a-9c6cc9673b9d", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. ", "original_text": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n"}, "hash": "454306167ebeedf8281c039a71abc3c5b3abd1e2c8ff67d6c79d551b116ebde7", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n", "start_char_idx": 0, "end_char_idx": 365, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "603ea3c1-06dc-4f3b-944a-9c6cc9673b9d": {"__data__": {"id_": "603ea3c1-06dc-4f3b-944a-9c6cc9673b9d", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. ", "original_text": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c6e72421-0c17-4c05-85ce-2010d1df2cea", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "83934c98e2e0fa2df6a53e96f215621b700a92548c6c3e9bb295ec8ee4d377b0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0fc13ea-7924-4e50-95e1-f43f0559d329", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . ", "original_text": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. "}, "hash": "5d02a2d1c1ba1437cd632330ac44c460fb7d6a6a7e23aa3c127691528114ec07", "class_name": "RelatedNodeInfo"}}, "text": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n", "start_char_idx": 365, "end_char_idx": 524, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a0fc13ea-7924-4e50-95e1-f43f0559d329": {"__data__": {"id_": "a0fc13ea-7924-4e50-95e1-f43f0559d329", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . ", "original_text": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "603ea3c1-06dc-4f3b-944a-9c6cc9673b9d", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. ", "original_text": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "961779064ad21ef3ca2fd54f3b8e9a92416649729790e7b7331bab2cfa21718d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b1f955b6-bde3-4187-b7ec-0ccca333c31b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. ", "original_text": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n"}, "hash": "df71ac348a133faf2722617e8a75ffc1df2c057d715358ef918bc2c42a449988", "class_name": "RelatedNodeInfo"}}, "text": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. ", "start_char_idx": 524, "end_char_idx": 807, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b1f955b6-bde3-4187-b7ec-0ccca333c31b": {"__data__": {"id_": "b1f955b6-bde3-4187-b7ec-0ccca333c31b", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. ", "original_text": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a0fc13ea-7924-4e50-95e1-f43f0559d329", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . ", "original_text": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "789f3223e6e46b32012ac95a1728aa2b9be79245287c9f9e5bdf01f91d51997e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b57b692-0186-4785-9cda-71e403686f43", "node_type": "1", "metadata": {"window": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. ", "original_text": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. "}, "hash": "bc18735276cc84f0534e972efc5a856e47adb5390f0d317776d715f29e0ae75f", "class_name": "RelatedNodeInfo"}}, "text": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n", "start_char_idx": 807, "end_char_idx": 978, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b57b692-0186-4785-9cda-71e403686f43": {"__data__": {"id_": "5b57b692-0186-4785-9cda-71e403686f43", "embedding": null, "metadata": {"window": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. ", "original_text": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b1f955b6-bde3-4187-b7ec-0ccca333c31b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. ", "original_text": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "3ea62dea37699a96956b521e05f936d8eb55395d88690eefbd178aacbdd104a6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8086fd1e-b2ec-4070-975c-c2361133f6a4", "node_type": "1", "metadata": {"window": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n", "original_text": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . "}, "hash": "dc0d59d7a3f314bbf6868b84b523e86d1358d72588db9ce23a1b4a2845aa0101", "class_name": "RelatedNodeInfo"}}, "text": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. ", "start_char_idx": 978, "end_char_idx": 1199, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8086fd1e-b2ec-4070-975c-c2361133f6a4": {"__data__": {"id_": "8086fd1e-b2ec-4070-975c-c2361133f6a4", "embedding": null, "metadata": {"window": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n", "original_text": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5b57b692-0186-4785-9cda-71e403686f43", "node_type": "1", "metadata": {"window": "a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. ", "original_text": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "869f4c33f52f0c1bb5510a8825a2487b69d4a6022105bbb2bb821ec6638b4133", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111", "node_type": "1", "metadata": {"window": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. ", "original_text": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. "}, "hash": "78d837bc31abf3b066fdc3e8415c7e8955997da4fedb0a3cf7e11e829951b74f", "class_name": "RelatedNodeInfo"}}, "text": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . ", "start_char_idx": 1199, "end_char_idx": 1396, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111": {"__data__": {"id_": "ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111", "embedding": null, "metadata": {"window": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. ", "original_text": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8086fd1e-b2ec-4070-975c-c2361133f6a4", "node_type": "1", "metadata": {"window": "b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n", "original_text": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "e76c5d98599a023a2223a240dbd5065d0cad8dce08d9cd269a786a6800c70592", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc11dbf0-462f-4bef-b531-78c07e33d133", "node_type": "1", "metadata": {"window": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n", "original_text": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. "}, "hash": "affaf167b6f4c17f95eff58ffa3cdb5caa7e366a8b828f9d4c2e8b43cd862fa8", "class_name": "RelatedNodeInfo"}}, "text": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. ", "start_char_idx": 1396, "end_char_idx": 1765, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc11dbf0-462f-4bef-b531-78c07e33d133": {"__data__": {"id_": "bc11dbf0-462f-4bef-b531-78c07e33d133", "embedding": null, "metadata": {"window": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n", "original_text": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111", "node_type": "1", "metadata": {"window": "Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n 1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. ", "original_text": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "3f62e18bbdcc62e790e93048b4e193537633845add096cbd39de26f611df8b26", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0c284300-d9f9-441d-b582-6e6795221c4e", "node_type": "1", "metadata": {"window": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n", "original_text": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n"}, "hash": "5a8c0c82b76e1de79b5db0dcbf37857542b76826b02aa2a0dba88b886950b3f0", "class_name": "RelatedNodeInfo"}}, "text": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. ", "start_char_idx": 1765, "end_char_idx": 1879, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0c284300-d9f9-441d-b582-6e6795221c4e": {"__data__": {"id_": "0c284300-d9f9-441d-b582-6e6795221c4e", "embedding": null, "metadata": {"window": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n", "original_text": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc11dbf0-462f-4bef-b531-78c07e33d133", "node_type": "1", "metadata": {"window": "1.4.6.2 Second line of defense : risk management and compli ance \nfunction \nThe second line of defense shall support the first line of defense and to \noversee all type of compliance and financial controlling issues. They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n", "original_text": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "20e2519f881d8e1064ebb32ebf87ef072d9cc5570793edf9c28e464b5e736d99", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1e759376-2456-49fa-a154-1a5e19aad3e9", "node_type": "1", "metadata": {"window": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. "}, "hash": "d1f1e856d93563002e4066e39cc890138aa7f653551fb9dd5d0e9d0dd4030d60", "class_name": "RelatedNodeInfo"}}, "text": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n", "start_char_idx": 1879, "end_char_idx": 2014, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e759376-2456-49fa-a154-1a5e19aad3e9": {"__data__": {"id_": "1e759376-2456-49fa-a154-1a5e19aad3e9", "embedding": null, "metadata": {"window": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0c284300-d9f9-441d-b582-6e6795221c4e", "node_type": "1", "metadata": {"window": "They are \nalso involved in monitoring for suspicious activity, sanctions compliance \nscreening (batch screening), and guiding in conducting initial and \nongoing screening of customer onboarding . Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n", "original_text": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "d5a81e6a9fcc6767faae819c3ff3e37cd803656b300ca89157b4789a05eea627", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cf77eaa3-eda1-41a1-84ee-75ca0759b985", "node_type": "1", "metadata": {"window": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n"}, "hash": "2ecdbf9a31041aea0c52de00792f17a7c8388ca5e4d86644395f85fa82af2644", "class_name": "RelatedNodeInfo"}}, "text": "b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. ", "start_char_idx": 2014, "end_char_idx": 2248, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cf77eaa3-eda1-41a1-84ee-75ca0759b985": {"__data__": {"id_": "cf77eaa3-eda1-41a1-84ee-75ca0759b985", "embedding": null, "metadata": {"window": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1e759376-2456-49fa-a154-1a5e19aad3e9", "node_type": "1", "metadata": {"window": "Are to monitor and report risk \nrelated practices and information, \nThe second line of defense , besides MLRO, shall be performed by the \nfollowing officers/authorities \na. Chief Compliance Officer shall be re sponsible to ensure that the \nBank has adequate policie s and systems to safeguard the B ank \nagainst the risk s of being used for any illicit activities. He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "76de120a5e012548d8c1fd74801e9e9caad973e57765aa5d81b6d0b522ff2ebf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5622feb7-e8d7-436c-b3da-101d0b4f4f06", "node_type": "1", "metadata": {"window": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n"}, "hash": "df855f55defbcceb5c5057f9771280288135a3b210d1ec223d121bb121b09a76", "class_name": "RelatedNodeInfo"}}, "text": "The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n", "start_char_idx": 2248, "end_char_idx": 2440, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5622feb7-e8d7-436c-b3da-101d0b4f4f06": {"__data__": {"id_": "5622feb7-e8d7-436c-b3da-101d0b4f4f06", "embedding": null, "metadata": {"window": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf77eaa3-eda1-41a1-84ee-75ca0759b985", "node_type": "1", "metadata": {"window": "He/she shall \ncommunicate to the top management and the B oard level committee \ntowards managing the ML/TF ri sk. CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "4e74641a6e77a69761c54229e7b65af1a3a01a950f0511d192ce6779c2da3d63", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ff3e9c00-eb71-4900-9413-b6deada6e561", "node_type": "1", "metadata": {"window": "b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . "}, "hash": "9efd70d5bee1f5abb6cb6dbff0899553e9f39a0e34c073e0546317a1cafb4537", "class_name": "RelatedNodeInfo"}}, "text": "c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n", "start_char_idx": 2440, "end_char_idx": 2598, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff3e9c00-eb71-4900-9413-b6deada6e561": {"__data__": {"id_": "ff3e9c00-eb71-4900-9413-b6deada6e561", "embedding": null, "metadata": {"window": "b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700", "node_type": "4", "metadata": {"page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5622feb7-e8d7-436c-b3da-101d0b4f4f06", "node_type": "1", "metadata": {"window": "CCO shall also be responsible for \neffective implementation of the policies and guidelines/manuals, in all \nareas within the Bank. \n \n b. Chief Risk Officer shall have to monitor operating effectiveness of \nmitigating controls and conduct assessment of the residual risk, \nwhich considers the effectiveness/status of the controls against the \nML/TF risks of the bank. The residual risk should be measured and \nwithin the bank\u2019s risk appetite , otherwise an action plan is to be \ndeveloped in correcting underperforming controls based on identified \ngaps. \n \n c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "original_text": "c. Chief Operating Officer shall be responsible for establishing proper \nimplementation mechanism of checks/control as per this Policy \nacross the Bank. \n \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "hash": "bdf5de8c6dfb83da44831757447429f3a9eaebfd979bc4fbe600a52be7c35e81", "class_name": "RelatedNodeInfo"}}, "text": "d. Chief -Information Technology Officer shall be responsible for \nproviding appropriate level of assurance to the Bank that the system \nproduces accurate results / reports that helps to implement AML/CFT \nprogram . ", "start_char_idx": 2598, "end_char_idx": 2817, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "32da5209-b7d2-4eb3-8d14-ef013b8d4938": {"__data__": {"id_": "32da5209-b7d2-4eb3-8d14-ef013b8d4938", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . ", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be", "node_type": "4", "metadata": {"page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "9f00ef0cd92cdc37b15d3c18b87090808cdec56e7142dfc31604b063370431ba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "This officer shall report to the MLRO or the \nAML/CFT Unit. \n"}, "hash": "d699384f91592bde58ce6579817a6da3ede5db7755c1959de6a013c082497025", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . ", "start_char_idx": 0, "end_char_idx": 265, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1": {"__data__": {"id_": "f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "This officer shall report to the MLRO or the \nAML/CFT Unit. \n", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be", "node_type": "4", "metadata": {"page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "9f00ef0cd92cdc37b15d3c18b87090808cdec56e7142dfc31604b063370431ba", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "32da5209-b7d2-4eb3-8d14-ef013b8d4938", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . ", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "7adcf5857543a7ef972bb4df8de54f47bca7c343265c37c498a861943f83c876", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8847a2eb-c347-4971-94f1-45a7f1688aac", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "1.4.6.3 Third line of defense : internal audit function. \n"}, "hash": "54f5921346d899e011cf4fef3d37ee00668cfe5e6fcd51bfe020712d5b1c8566", "class_name": "RelatedNodeInfo"}}, "text": "This officer shall report to the MLRO or the \nAML/CFT Unit. \n", "start_char_idx": 265, "end_char_idx": 329, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8847a2eb-c347-4971-94f1-45a7f1688aac": {"__data__": {"id_": "8847a2eb-c347-4971-94f1-45a7f1688aac", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "1.4.6.3 Third line of defense : internal audit function. \n", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be", "node_type": "4", "metadata": {"page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "9f00ef0cd92cdc37b15d3c18b87090808cdec56e7142dfc31604b063370431ba", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "This officer shall report to the MLRO or the \nAML/CFT Unit. \n", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "084bc82d83027f7ce83998b95b6b62fc237a7d62cc2cd1c4c5b411b417fe45fe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c608428-da65-4cb9-bb75-fbc5c66ccd01", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "The Third Line of Defense will be performed by internal audit. "}, "hash": "7ae98f78b937b958a5d39893facb21dc09b8817b03b77c590188e28f6d5bb375", "class_name": "RelatedNodeInfo"}}, "text": "1.4.6.3 Third line of defense : internal audit function. \n", "start_char_idx": 329, "end_char_idx": 390, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9c608428-da65-4cb9-bb75-fbc5c66ccd01": {"__data__": {"id_": "9c608428-da65-4cb9-bb75-fbc5c66ccd01", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "The Third Line of Defense will be performed by internal audit. ", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be", "node_type": "4", "metadata": {"page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "9f00ef0cd92cdc37b15d3c18b87090808cdec56e7142dfc31604b063370431ba", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8847a2eb-c347-4971-94f1-45a7f1688aac", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "1.4.6.3 Third line of defense : internal audit function. \n", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "827d83689f32c53615e4d764a5ca96d1b191397a85ad5fed5210fe5e80efa997", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3f05e59-fcfb-46c1-8e98-1e1783599004", "node_type": "1", "metadata": {"window": "This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n "}, "hash": "94ca39bac6e31e4419d6832e205be4ff2117e9b40483d3278efbfd6f4ab77ae5", "class_name": "RelatedNodeInfo"}}, "text": "The Third Line of Defense will be performed by internal audit. ", "start_char_idx": 390, "end_char_idx": 453, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3f05e59-fcfb-46c1-8e98-1e1783599004": {"__data__": {"id_": "e3f05e59-fcfb-46c1-8e98-1e1783599004", "embedding": null, "metadata": {"window": "This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be", "node_type": "4", "metadata": {"page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "9f00ef0cd92cdc37b15d3c18b87090808cdec56e7142dfc31604b063370431ba", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9c608428-da65-4cb9-bb75-fbc5c66ccd01", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "original_text": "The Third Line of Defense will be performed by internal audit. ", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "hash": "88634c83876f2bf004c51edabbe4d8f1e4b7cffa015e9dbdbab2351023b887b9", "class_name": "RelatedNodeInfo"}}, "text": "The Bank \u2019s \ninternal audit shall carry out AML/CFT theme -based audit, through a risk -\nbased approach, where it will review activities (effectiveness) of the first \ntwo lines of defense with the purpose to ensure to the BOD and senior \nmanagement that applicable act/ rules/ directives and internal policies / \nmanuals requ irements are being carried out effectively. \n ", "start_char_idx": 453, "end_char_idx": 829, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f24a6dc4-2427-4dd3-9bb8-61fe621a59cb": {"__data__": {"id_": "f24a6dc4-2427-4dd3-9bb8-61fe621a59cb", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "df0cb8c7-a553-454b-ba68-82ec87b30299", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n", "original_text": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n"}, "hash": "16df2a43dca297d8281de9293cae7f746f098d16bc6fcc25620d1c8e093e08e3", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. ", "start_char_idx": 0, "end_char_idx": 205, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "df0cb8c7-a553-454b-ba68-82ec87b30299": {"__data__": {"id_": "df0cb8c7-a553-454b-ba68-82ec87b30299", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n", "original_text": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f24a6dc4-2427-4dd3-9bb8-61fe621a59cb", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "299f146ae3ad1b00f87cdb9c7ed94a029d7512674f8efdd380f0fa8c7c3f3d7b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "413faf23-1ff4-4f8e-a48b-d9509c3d23ae", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. ", "original_text": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. "}, "hash": "a21614df9263e506eeffad1449d0c0d7fab11b8b777ec76f60a1cacd6f307e9a", "class_name": "RelatedNodeInfo"}}, "text": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n", "start_char_idx": 205, "end_char_idx": 376, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "413faf23-1ff4-4f8e-a48b-d9509c3d23ae": {"__data__": {"id_": "413faf23-1ff4-4f8e-a48b-d9509c3d23ae", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. ", "original_text": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "df0cb8c7-a553-454b-ba68-82ec87b30299", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n", "original_text": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "c8a6042f70c5da68ceab1fc20bce02a413f12def583ea1a591819bc216f61efb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n", "original_text": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n"}, "hash": "cb2cafdb58762b15f97f82106366983025068e949e69b6036be62bf9067d9cf1", "class_name": "RelatedNodeInfo"}}, "text": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. ", "start_char_idx": 376, "end_char_idx": 822, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2": {"__data__": {"id_": "9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n", "original_text": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "413faf23-1ff4-4f8e-a48b-d9509c3d23ae", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. ", "original_text": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "bccb94968e8dcf617476362fbaf44ce68f36bcb1131cbd764d794a0df94933f5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b9707183-c73e-4aee-8864-fee85b148ec9", "node_type": "1", "metadata": {"window": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n", "original_text": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n"}, "hash": "928f90e2ae48bc192a2a1b4bde004d1b78da246397bf73c7587e41d10f5663af", "class_name": "RelatedNodeInfo"}}, "text": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n", "start_char_idx": 822, "end_char_idx": 982, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b9707183-c73e-4aee-8864-fee85b148ec9": {"__data__": {"id_": "b9707183-c73e-4aee-8864-fee85b148ec9", "embedding": null, "metadata": {"window": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n", "original_text": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n", "original_text": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "a702d359d36a1e5917105a9e044c88bd28520a67aeddc631cebb29bef3c1b6ca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "90e148e7-14d9-4881-861d-0786b910c721", "node_type": "1", "metadata": {"window": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). ", "original_text": "c. Identify the beneficial owner. "}, "hash": "b7fbbc8d2e6a11d11ff5c3d8402d75db0044d3bacfbbcbcbfd8c26e183df1d6b", "class_name": "RelatedNodeInfo"}}, "text": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n", "start_char_idx": 982, "end_char_idx": 1091, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "90e148e7-14d9-4881-861d-0786b910c721": {"__data__": {"id_": "90e148e7-14d9-4881-861d-0786b910c721", "embedding": null, "metadata": {"window": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). ", "original_text": "c. Identify the beneficial owner. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b9707183-c73e-4aee-8864-fee85b148ec9", "node_type": "1", "metadata": {"window": "The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n", "original_text": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "2b205092467c1ef9df24f984af27d297aa5ac6f8019d2c143a2f67fa7d7dffda", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c85b5a7b-c07c-456c-b67e-041c52a49a9c", "node_type": "1", "metadata": {"window": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n", "original_text": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n"}, "hash": "e573d6c39042db4556042ad5200300cb323a8e766e0164ec080e9e072b3304fd", "class_name": "RelatedNodeInfo"}}, "text": "c. Identify the beneficial owner. ", "start_char_idx": 1091, "end_char_idx": 1125, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c85b5a7b-c07c-456c-b67e-041c52a49a9c": {"__data__": {"id_": "c85b5a7b-c07c-456c-b67e-041c52a49a9c", "embedding": null, "metadata": {"window": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n", "original_text": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "90e148e7-14d9-4881-861d-0786b910c721", "node_type": "1", "metadata": {"window": "2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). ", "original_text": "c. Identify the beneficial owner. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "5dca85609cb96aed433b1b962275e03b43d4ee7583c4345b904bd649e25f8134", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8fa24c22-6fbd-4ab5-a8df-d0043157c950", "node_type": "1", "metadata": {"window": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n"}, "hash": "fd87ffc44d4399da9e1f529498b70d2bb52fc39da68fe6900ceb4b3aee0bba6b", "class_name": "RelatedNodeInfo"}}, "text": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n", "start_char_idx": 1125, "end_char_idx": 1223, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8fa24c22-6fbd-4ab5-a8df-d0043157c950": {"__data__": {"id_": "8fa24c22-6fbd-4ab5-a8df-d0043157c950", "embedding": null, "metadata": {"window": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c85b5a7b-c07c-456c-b67e-041c52a49a9c", "node_type": "1", "metadata": {"window": "The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n", "original_text": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "5080ed4315173fddd9c014f727d36f766efd6b3cccfbf6fb25d0ddc89c847dcf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d7f0868b-795a-4340-8ac3-625b21cf4b6f", "node_type": "1", "metadata": {"window": "c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). "}, "hash": "167058db05273506a756d3426a8d779e75b1b4165f550aa30e05f382b8174c6a", "class_name": "RelatedNodeInfo"}}, "text": "d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n", "start_char_idx": 1223, "end_char_idx": 1334, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d7f0868b-795a-4340-8ac3-625b21cf4b6f": {"__data__": {"id_": "d7f0868b-795a-4340-8ac3-625b21cf4b6f", "embedding": null, "metadata": {"window": "c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8fa24c22-6fbd-4ab5-a8df-d0043157c950", "node_type": "1", "metadata": {"window": "b. Verify the identity of the customer using reliable, independent source \ndocuments, data or information. \n c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "d029e425b79140f42085ebf942dabbb49db3e1ebc31aacaf69970bba9bbd39d9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7c5c4726-bc4f-48d9-9331-ad444749d3ae", "node_type": "1", "metadata": {"window": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n"}, "hash": "6dd021664d0c6c34da4473dfdfc0dac0966a3790af372b371f5f9cb913ae64d4", "class_name": "RelatedNodeInfo"}}, "text": "e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). ", "start_char_idx": 1334, "end_char_idx": 1433, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c5c4726-bc4f-48d9-9331-ad444749d3ae": {"__data__": {"id_": "7c5c4726-bc4f-48d9-9331-ad444749d3ae", "embedding": null, "metadata": {"window": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d7f0868b-795a-4340-8ac3-625b21cf4b6f", "node_type": "1", "metadata": {"window": "c. Identify the beneficial owner. This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "ccf9f753bc3935210a66e31ebffed716844d689adc6c881d08c8473b38c3ba63", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aec64413-f360-4c95-891e-294655fa24f5", "node_type": "1", "metadata": {"window": "d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision "}, "hash": "ec56d519b5f042f9af4295312a37bac7ea2feac9e6501ad3e469050709820640", "class_name": "RelatedNodeInfo"}}, "text": "The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n", "start_char_idx": 1433, "end_char_idx": 1550, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aec64413-f360-4c95-891e-294655fa24f5": {"__data__": {"id_": "aec64413-f360-4c95-891e-294655fa24f5", "embedding": null, "metadata": {"window": "d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455", "node_type": "4", "metadata": {"page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7c5c4726-bc4f-48d9-9331-ad444749d3ae", "node_type": "1", "metadata": {"window": "This includes knowing and understanding the \nowners hip and control structure of the customer . \n d. Conduct periodic name screening of the customer base to identify high risk \nor any prohibited customers. \n e. Give special consideration to the treatment of PEPs (whether as customer or \nbeneficial owner). The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "original_text": "The bank shal l: \ni. Have appropriate systems to determine whether the customer or the \nbeneficial owner is a PEP. \n", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "hash": "04ae7163c72c4938ebec2c1307d6d4ab798c907d15d7f61d181a24e45702ca84", "class_name": "RelatedNodeInfo"}}, "text": "Customer \nIdentification \nProcedures \nRisk Management \nKYC \nIdentity customer \n \nIdentify purpose \n \nIdentify \nbeneficial owner \n \nVerify address \nCDD (SCDD / CDD / ECDD) \nIdentify \nML/TF risk \nAssign \nRisk \nHigh \nMedium \nLow \nName \nScreening \nSanction list \n \nPEP \n \nAdverse media \n \n \nCustomer \nAcceptance \nPolicy \nMonitoring \nPeriodic \n \nEvent driven \n \nTransaction \nmonitoring \nReview \nCustome r \nCountry \nGeography \nProducts & \nservices \nApprove and \nestablish \nrelationship or \nreject and exit \nrelationship with \ncustomer \nDecision ", "start_char_idx": 1550, "end_char_idx": 2115, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "47be1383-b4c3-4b46-b1bb-612f115cb5cd": {"__data__": {"id_": "47be1383-b4c3-4b46-b1bb-612f115cb5cd", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n9 ii. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "46cb1d52-0f0b-4b17-8e1f-3432aae4826c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n", "original_text": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n"}, "hash": "deaa9bf07174eba1aa42f87300d970b884e366dbf37d432eefe19fabcdcded1d", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n9 ii. ", "start_char_idx": 0, "end_char_idx": 51, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "46cb1d52-0f0b-4b17-8e1f-3432aae4826c": {"__data__": {"id_": "46cb1d52-0f0b-4b17-8e1f-3432aae4826c", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n", "original_text": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "47be1383-b4c3-4b46-b1bb-612f115cb5cd", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n9 ii. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "c1f898de4d34f2aca0e856db29fc849b3df20423e5a762819f659de907913e00", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "778b8bd0-445d-4c66-8804-9c1e37888ea4", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n", "original_text": "iii. "}, "hash": "c1b4fcff71d7a82d3d6fa3e55efaec16c1b3369f7c7efc488a4af9a09eef1761", "class_name": "RelatedNodeInfo"}}, "text": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n", "start_char_idx": 51, "end_char_idx": 139, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "778b8bd0-445d-4c66-8804-9c1e37888ea4": {"__data__": {"id_": "778b8bd0-445d-4c66-8804-9c1e37888ea4", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n", "original_text": "iii. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "46cb1d52-0f0b-4b17-8e1f-3432aae4826c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n", "original_text": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "0ed019a61a969dd225a7dfc44580580ba02320bd86af4986565128c266fe4342", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8acd8464-081a-4d21-a2d8-811bc8a41922", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n", "original_text": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. "}, "hash": "e33f4666a4f61d66030669a2adc1b46267e6c3e4fcf0563e84148de0520bd7fd", "class_name": "RelatedNodeInfo"}}, "text": "iii. ", "start_char_idx": 139, "end_char_idx": 144, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8acd8464-081a-4d21-a2d8-811bc8a41922": {"__data__": {"id_": "8acd8464-081a-4d21-a2d8-811bc8a41922", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n", "original_text": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "778b8bd0-445d-4c66-8804-9c1e37888ea4", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n", "original_text": "iii. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "fde14e3c37db5eb898835853897f71d7146ad61734dd69a4c09617883221aced", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c895e787-7815-4877-a7df-afab66f0636a", "node_type": "1", "metadata": {"window": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. ", "original_text": "Conduct enhanced customer due diligence. \n \n"}, "hash": "b5746a0d01def69dd08ce8a4d0738e931ca100f0663bfe84cfc098d378d33f2f", "class_name": "RelatedNodeInfo"}}, "text": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. ", "start_char_idx": 144, "end_char_idx": 230, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c895e787-7815-4877-a7df-afab66f0636a": {"__data__": {"id_": "c895e787-7815-4877-a7df-afab66f0636a", "embedding": null, "metadata": {"window": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. ", "original_text": "Conduct enhanced customer due diligence. \n \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8acd8464-081a-4d21-a2d8-811bc8a41922", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n", "original_text": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "b24f546ed7b09e7099f7ffc7fd312c923ba29f8bdf91c1c0e0954750714d5b0e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "296c8197-079b-4c2d-b812-f74780c73c32", "node_type": "1", "metadata": {"window": "iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n", "original_text": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n"}, "hash": "fa5cc1983ef3e194ed1e1d9515e54d236abb7f35d93d6017e42f5b5a01360c22", "class_name": "RelatedNodeInfo"}}, "text": "Conduct enhanced customer due diligence. \n \n", "start_char_idx": 230, "end_char_idx": 275, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "296c8197-079b-4c2d-b812-f74780c73c32": {"__data__": {"id_": "296c8197-079b-4c2d-b812-f74780c73c32", "embedding": null, "metadata": {"window": "iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n", "original_text": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c895e787-7815-4877-a7df-afab66f0636a", "node_type": "1", "metadata": {"window": "Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. ", "original_text": "Conduct enhanced customer due diligence. \n \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "7b7b0ad58124d3185e6b052afa7479563d0297d93785e1d40c8d3db9f6197e9b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a80953f0-5fd7-434d-8fc0-cfd43266c141", "node_type": "1", "metadata": {"window": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n", "original_text": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n"}, "hash": "48d54bbbbe1e9c194cbabd72da41452ff221aa1d884636770fb6c103a5ecfc53", "class_name": "RelatedNodeInfo"}}, "text": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n", "start_char_idx": 275, "end_char_idx": 598, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a80953f0-5fd7-434d-8fc0-cfd43266c141": {"__data__": {"id_": "a80953f0-5fd7-434d-8fc0-cfd43266c141", "embedding": null, "metadata": {"window": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n", "original_text": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "296c8197-079b-4c2d-b812-f74780c73c32", "node_type": "1", "metadata": {"window": "iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n", "original_text": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "b3431f39305ad838bf3265cce86777e4406bd3654c77037d8d1f5c185c2984d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2a7e0776-0b2c-48ed-a2cc-258375452620", "node_type": "1", "metadata": {"window": "Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . ", "original_text": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. "}, "hash": "725afaa69352fcb60fd521ded2a44aec744360962d8f1d07d03a91ee7f4fd7cc", "class_name": "RelatedNodeInfo"}}, "text": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n", "start_char_idx": 598, "end_char_idx": 909, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2a7e0776-0b2c-48ed-a2cc-258375452620": {"__data__": {"id_": "2a7e0776-0b2c-48ed-a2cc-258375452620", "embedding": null, "metadata": {"window": "Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . ", "original_text": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a80953f0-5fd7-434d-8fc0-cfd43266c141", "node_type": "1", "metadata": {"window": "Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n", "original_text": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "423c5becb47d1b8e58be98d9873dd5f498b7c535c9c2aa46915bdd148cd2a713", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "faa27de2-ed4c-48b4-8317-fc0e869a4a36", "node_type": "1", "metadata": {"window": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n", "original_text": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n"}, "hash": "3e8f113ffa0b21c75bd7af4b0d731f9345c3ed3b5bacc6e1f780266eed6b9fd0", "class_name": "RelatedNodeInfo"}}, "text": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. ", "start_char_idx": 909, "end_char_idx": 1160, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "faa27de2-ed4c-48b4-8317-fc0e869a4a36": {"__data__": {"id_": "faa27de2-ed4c-48b4-8317-fc0e869a4a36", "embedding": null, "metadata": {"window": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n", "original_text": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2a7e0776-0b2c-48ed-a2cc-258375452620", "node_type": "1", "metadata": {"window": "Conduct enhanced customer due diligence. \n \n f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . ", "original_text": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "144fe5b59ef441c688594ee29a3ef25df0aeb10d5e0088c86626bd585809133c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "463072b0-0ada-437e-bb65-bf0976ef72b3", "node_type": "1", "metadata": {"window": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n"}, "hash": "36bdecf469e1cedb22983234406de6f950ee77c25d6633e42d0a3a6349615270", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n", "start_char_idx": 1160, "end_char_idx": 1511, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "463072b0-0ada-437e-bb65-bf0976ef72b3": {"__data__": {"id_": "463072b0-0ada-437e-bb65-bf0976ef72b3", "embedding": null, "metadata": {"window": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "faa27de2-ed4c-48b4-8317-fc0e869a4a36", "node_type": "1", "metadata": {"window": "f. Conduct ongoing due diligence on the business relationship and scrutiny of \ntransactions undertaken throughout the course of that relationship to ensure \nthat the transactions being conducted by its customers are consistent with \nthe Bank\u2019s knowledge of the customers and the customers\u2019 businesses and \nrisk profiles. \n g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n", "original_text": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "47f0f153b061c3e5dd36a40062e5230982b86dfdbe6c054ef7747f87b203fa64", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4e248107-2035-4199-bc08-c74b49d5fcc6", "node_type": "1", "metadata": {"window": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . "}, "hash": "3192ac1f24ebb42b31cc4c2c8b10211dc00a67b6d7c5c9a05993d5e4d6c901e5", "class_name": "RelatedNodeInfo"}}, "text": "2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n", "start_char_idx": 1511, "end_char_idx": 1945, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4e248107-2035-4199-bc08-c74b49d5fcc6": {"__data__": {"id_": "4e248107-2035-4199-bc08-c74b49d5fcc6", "embedding": null, "metadata": {"window": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "463072b0-0ada-437e-bb65-bf0976ef72b3", "node_type": "1", "metadata": {"window": "g. Customer onboarding and verification through technological applications \n(internet, telephone, fax, postal services or others) shall be base d on a risk -\nbased approach which shall be as robust as those for face - to-face customer \nverification and in adherence with the prevailing regulations and laws. \n 2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "1b0f9ac013c5921c626da62eddb015b1d59fed9d6397dfb692804f29895cf702", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cfdfad83-3486-47fc-9d06-18e966e50b7c", "node_type": "1", "metadata": {"window": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n"}, "hash": "a8b22dde5348d4f9d7340cda63774d36e6371fe82fb75fd544c25f56a29de7a5", "class_name": "RelatedNodeInfo"}}, "text": "b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . ", "start_char_idx": 1945, "end_char_idx": 2309, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cfdfad83-3486-47fc-9d06-18e966e50b7c": {"__data__": {"id_": "cfdfad83-3486-47fc-9d06-18e966e50b7c", "embedding": null, "metadata": {"window": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4e248107-2035-4199-bc08-c74b49d5fcc6", "node_type": "1", "metadata": {"window": "2.2.2 Risk Management \nThe Bank shall establish system of risk grading of each customer based on their \nrisk profile by evaluating the impact of transactions to the Bank and as guided by \nAsset (Money) Laundering Prevention Act and NRB Directive. The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "b2e87703a576cb5025c86c021e61bc3ac39df29a311a53f52fe8ddf0003ef12b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "50e9c42c-bb86-4291-a2a7-bd60a71a466e", "node_type": "1", "metadata": {"window": "2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n "}, "hash": "26d38b462e4623b43bc6a9e4aee884c805be84fcda43a7082d88e700236949a1", "class_name": "RelatedNodeInfo"}}, "text": "In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n", "start_char_idx": 2309, "end_char_idx": 2436, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "50e9c42c-bb86-4291-a2a7-bd60a71a466e": {"__data__": {"id_": "50e9c42c-bb86-4291-a2a7-bd60a71a466e", "embedding": null, "metadata": {"window": "2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "b85e2633-a0dd-4abd-8398-c44410232847", "node_type": "4", "metadata": {"page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cfdfad83-3486-47fc-9d06-18e966e50b7c", "node_type": "1", "metadata": {"window": "The Bank shall \nconsider other influencing factors such as geography or country , customers \n(including occupation, profession, and type), product or service availed, nature of \nthe transaction, and delivery channels used in categorizing customers as per the \nrisks associated with them into \u201cLow Risk\u201d, \u201cMedium Risk\u201d, and \u201cHigh Risk\u201d \ncategories. \n 2.2.2.1 Identification of inherent ML/TF risk \nTo assess the inherent ML/TF risks faced by the Bank, Bank shall include \nthe following risk categories in its risk assessment process: \na. Customer \nThe Bank shall determine the potential ML and TF risks posed by a \ncustomer, or category of customers, based on occupation, profession, \nand transaction , which shall be in line with the recommendation of \nFATF and the Regulator. \n b. Country \nThe Bank shall introduce mechanism / system to identify high risk \njurisdiction/ sanctions countries known to be supporting international \nterrorism, and those with deficiencies in combatting money laundering \nand terrorist financing before establishing relationship and carrying out \nthe transaction on behalf of a customer thus requiring ECDD . In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "original_text": "In doing \nso the bank shall include countries identified by FATF as lacking \nadequate money laundering laws and regulations . \n", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "hash": "739aa80fbb3f30c8a3f26c7d953eea945383b13d8bdbe6e3f2f913d565777f2f", "class_name": "RelatedNodeInfo"}}, "text": "c. Geography \nThe Bank shall assess the risk of its customers or transactions \nconducted in geographical areas within the country where illegal \nactivities are high. \n \n ", "start_char_idx": 2436, "end_char_idx": 2610, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd": {"__data__": {"id_": "5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ff25c099-aa59-464c-a08c-fdb3791ab5dd", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n", "original_text": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n"}, "hash": "4befaa4807acc27845d7283adeef370dc9a72cc2f29ddcaf62f09c23bf04a1ae", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. ", "start_char_idx": 0, "end_char_idx": 215, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff25c099-aa59-464c-a08c-fdb3791ab5dd": {"__data__": {"id_": "ff25c099-aa59-464c-a08c-fdb3791ab5dd", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n", "original_text": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "f58b80df674ffadaeedc902ee5e325938b656cff18f5c66ad4da4011f1e2d34a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ea4724d4-0293-4e1e-a176-0bea52a3e5f3", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n", "original_text": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. "}, "hash": "f22c4e8b6728a05da71f0816d8d95c590bd9c86f376ef3f67140c07fc55399fe", "class_name": "RelatedNodeInfo"}}, "text": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n", "start_char_idx": 215, "end_char_idx": 323, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ea4724d4-0293-4e1e-a176-0bea52a3e5f3": {"__data__": {"id_": "ea4724d4-0293-4e1e-a176-0bea52a3e5f3", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n", "original_text": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ff25c099-aa59-464c-a08c-fdb3791ab5dd", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n", "original_text": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "bc817c10f349d28c6967092ea63de75380786f59f481feef4f2ef326c8d63b8a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f9cc2420-88fe-404c-b7dc-a64dc68fa7ec", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n", "original_text": "For this, the Bank shall rely on internal \naudit and internal compliance testing. "}, "hash": "98e1ef199cbb7d9c3e303c301ad11f7486c6a09bc60557a34764a5c4c3740c42", "class_name": "RelatedNodeInfo"}}, "text": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. ", "start_char_idx": 323, "end_char_idx": 472, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f9cc2420-88fe-404c-b7dc-a64dc68fa7ec": {"__data__": {"id_": "f9cc2420-88fe-404c-b7dc-a64dc68fa7ec", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n", "original_text": "For this, the Bank shall rely on internal \naudit and internal compliance testing. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ea4724d4-0293-4e1e-a176-0bea52a3e5f3", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n", "original_text": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "7434b46d6f4f0b6e5140c0bae14452c940d48937055a6b05faac156db4d8be11", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "860c4228-3dfe-4204-8555-d3f93f30e982", "node_type": "1", "metadata": {"window": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n", "original_text": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n"}, "hash": "4396130f247d951f30291cb4ba374222c3481cdfdceba5786358c29504598b36", "class_name": "RelatedNodeInfo"}}, "text": "For this, the Bank shall rely on internal \naudit and internal compliance testing. ", "start_char_idx": 472, "end_char_idx": 556, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "860c4228-3dfe-4204-8555-d3f93f30e982": {"__data__": {"id_": "860c4228-3dfe-4204-8555-d3f93f30e982", "embedding": null, "metadata": {"window": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n", "original_text": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f9cc2420-88fe-404c-b7dc-a64dc68fa7ec", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n", "original_text": "For this, the Bank shall rely on internal \naudit and internal compliance testing. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "8e0bfb2b085e8a9db71ba4d6699c894f001c986c429ad7846c64b8822c53ba03", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6a65d6cc-b8ef-4b49-a1b9-06501f385281", "node_type": "1", "metadata": {"window": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n", "original_text": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n"}, "hash": "7e928eb0721ecf16dc8eece2af51dd54667e93ab42ead75ad1f09060286c77a7", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n", "start_char_idx": 556, "end_char_idx": 685, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6a65d6cc-b8ef-4b49-a1b9-06501f385281": {"__data__": {"id_": "6a65d6cc-b8ef-4b49-a1b9-06501f385281", "embedding": null, "metadata": {"window": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n", "original_text": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "860c4228-3dfe-4204-8555-d3f93f30e982", "node_type": "1", "metadata": {"window": "The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n", "original_text": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "56d29f02341b564b00d3a685520266feccbefb85090b7a670128d3d6b8fb37e6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "deb4207f-47b8-4363-ac6c-c00cf633e9a3", "node_type": "1", "metadata": {"window": "For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n", "original_text": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n"}, "hash": "2644794883657c771eeab3c1677fcccbc59bd4a09c83b58e433dea79f92562c5", "class_name": "RelatedNodeInfo"}}, "text": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n", "start_char_idx": 685, "end_char_idx": 807, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "deb4207f-47b8-4363-ac6c-c00cf633e9a3": {"__data__": {"id_": "deb4207f-47b8-4363-ac6c-c00cf633e9a3", "embedding": null, "metadata": {"window": "For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n", "original_text": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6a65d6cc-b8ef-4b49-a1b9-06501f385281", "node_type": "1", "metadata": {"window": "2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n", "original_text": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "4d0e167d71da749cb2db24953bf46cdb4af819afd87eb2bc7dfeeea658ec0345", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "70207f0b-28b6-4000-9af1-a9751ec388a1", "node_type": "1", "metadata": {"window": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n", "original_text": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n"}, "hash": "d15698ebcc1365ae14249f7df216e227d7fc0f6fc47d4a5cf676d9b14e709f36", "class_name": "RelatedNodeInfo"}}, "text": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n", "start_char_idx": 807, "end_char_idx": 881, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70207f0b-28b6-4000-9af1-a9751ec388a1": {"__data__": {"id_": "70207f0b-28b6-4000-9af1-a9751ec388a1", "embedding": null, "metadata": {"window": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n", "original_text": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "deb4207f-47b8-4363-ac6c-c00cf633e9a3", "node_type": "1", "metadata": {"window": "For this, the Bank shall rely on internal \naudit and internal compliance testing. The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n", "original_text": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "3ae0818aa5ff701096fa6277e98097174dc6a23b185f289b0dbb2267de689e54", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "35b30ee3-83d7-4c50-a533-590b75092687", "node_type": "1", "metadata": {"window": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n", "original_text": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n"}, "hash": "0c0c9d96b976f411ba6d2b77bf670ee76caf5378d9d4af55df94794c07a75a91", "class_name": "RelatedNodeInfo"}}, "text": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n", "start_char_idx": 881, "end_char_idx": 970, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35b30ee3-83d7-4c50-a533-590b75092687": {"__data__": {"id_": "35b30ee3-83d7-4c50-a533-590b75092687", "embedding": null, "metadata": {"window": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n", "original_text": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "70207f0b-28b6-4000-9af1-a9751ec388a1", "node_type": "1", "metadata": {"window": "The Bank shall conduct self -\nassessment of control ef fectiveness of AML/ CFT program to develop risk \nmitigating strategies. \n The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n", "original_text": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "50678376707b5cdfd4690c9239d10b6615cbb80f5876bbf85bc48031aa4dadb8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b74e5b1c-365c-4a04-b58e-ca8df2f2a812", "node_type": "1", "metadata": {"window": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n", "original_text": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n"}, "hash": "01fae6d71dba935c4c38a4df20203588b38001cc6ae972fddfcb2426b84a4fab", "class_name": "RelatedNodeInfo"}}, "text": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n", "start_char_idx": 970, "end_char_idx": 1068, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b74e5b1c-365c-4a04-b58e-ca8df2f2a812": {"__data__": {"id_": "b74e5b1c-365c-4a04-b58e-ca8df2f2a812", "embedding": null, "metadata": {"window": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n", "original_text": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "35b30ee3-83d7-4c50-a533-590b75092687", "node_type": "1", "metadata": {"window": "The assessment shall consider the followings \na. Identify and assess the ML/TF risks that are significant to the Bank. \n b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n", "original_text": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "0f1754efe777306273a97e08fbbb26ac925766a1d97987f2999a43a89fdc8664", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dac79022-37f6-466c-99fe-255aa9a4aff6", "node_type": "1", "metadata": {"window": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. ", "original_text": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n"}, "hash": "36b658c9e3242023afd9955671b27f5dcfaa6c88102bf18b9e4534cac9fa4019", "class_name": "RelatedNodeInfo"}}, "text": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n", "start_char_idx": 1068, "end_char_idx": 1271, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dac79022-37f6-466c-99fe-255aa9a4aff6": {"__data__": {"id_": "dac79022-37f6-466c-99fe-255aa9a4aff6", "embedding": null, "metadata": {"window": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. ", "original_text": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b74e5b1c-365c-4a04-b58e-ca8df2f2a812", "node_type": "1", "metadata": {"window": "b. Effectiveness of controls to manage and mitigate the assessed risks. \n c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n", "original_text": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "036a5e5453361fc2d6e7e901e87b0f7848037464f9a2110aa9353c6d8303c604", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a684faf2-d6e7-4094-a1f5-3073e3010969", "node_type": "1", "metadata": {"window": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n", "original_text": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n"}, "hash": "e27f70ee48705e4d3bf0668e2384428fd660d1466f1a2994af845dd56e1e1b91", "class_name": "RelatedNodeInfo"}}, "text": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n", "start_char_idx": 1271, "end_char_idx": 1573, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a684faf2-d6e7-4094-a1f5-3073e3010969": {"__data__": {"id_": "a684faf2-d6e7-4094-a1f5-3073e3010969", "embedding": null, "metadata": {"window": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n", "original_text": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dac79022-37f6-466c-99fe-255aa9a4aff6", "node_type": "1", "metadata": {"window": "c. Alignment of the risk based on the National Risk Assessment report \nof the country. \n d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. ", "original_text": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "5facd7e1c475fcb6307734838a08efafed9e44a6723edcf7d8f21d45eafe0631", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5", "node_type": "1", "metadata": {"window": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . ", "original_text": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n"}, "hash": "325704d3beda0299bd479f7a6d7f284a70d78e1abf4ae1a8f838f6e1032ccc8e", "class_name": "RelatedNodeInfo"}}, "text": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n", "start_char_idx": 1573, "end_char_idx": 1682, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5": {"__data__": {"id_": "b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5", "embedding": null, "metadata": {"window": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . ", "original_text": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a684faf2-d6e7-4094-a1f5-3073e3010969", "node_type": "1", "metadata": {"window": "d. Managing risk based on business relationship, transaction threshold \nand nature of customer. \n e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n", "original_text": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "676dcae8e012e17905d0bc217a4c912cc91ee8fe4e3bbe85e6b7986ef771db8d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "09d878c5-7b5f-43df-b2fc-17349c286eb7", "node_type": "1", "metadata": {"window": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n", "original_text": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. "}, "hash": "50f7778d981c9616056c41ceb908146fa9e00809cca647f97fbd1c3f0b2fa753", "class_name": "RelatedNodeInfo"}}, "text": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n", "start_char_idx": 1682, "end_char_idx": 1818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "09d878c5-7b5f-43df-b2fc-17349c286eb7": {"__data__": {"id_": "09d878c5-7b5f-43df-b2fc-17349c286eb7", "embedding": null, "metadata": {"window": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n", "original_text": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5", "node_type": "1", "metadata": {"window": "e. Mechanism to record digitally customer information obtained in the \nprocess of Customer Identification in unified way and ensure that \nsuch customer data are updated in line with the risk profile. \n f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . ", "original_text": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "bb67ac6a4c26dc6dd2873f827794219820c1af6488be8638e341807f9f69b7df", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e369201a-c028-456e-b33f-5a823cd04c4b", "node_type": "1", "metadata": {"window": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. ", "original_text": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n"}, "hash": "c96e345324f26ed8921f093ab73b488adc875b358ae4334e393dca29014f6e15", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. ", "start_char_idx": 1818, "end_char_idx": 1921, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e369201a-c028-456e-b33f-5a823cd04c4b": {"__data__": {"id_": "e369201a-c028-456e-b33f-5a823cd04c4b", "embedding": null, "metadata": {"window": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. ", "original_text": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "09d878c5-7b5f-43df-b2fc-17349c286eb7", "node_type": "1", "metadata": {"window": "f. Mechanism where Customer Identification process requires \ncustomer to be identified based on centralized record of the customer \nkept digitally by the bank, when updating data/in formation of the \ncustomer availing different product/service of the bank it shall be \nupdated in one single system. \n 2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n", "original_text": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "e6ad553dff83d0bba8b060dc67683698c54ba914d2925fc130f0e43a17844c1a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0862dba7-c437-419d-a67c-a7a19278ee37", "node_type": "1", "metadata": {"window": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. ", "original_text": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . "}, "hash": "786f7a4cebd20349b8093bdec160723f43e22ce262f86b6cf20b50ca8bb85b29", "class_name": "RelatedNodeInfo"}}, "text": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n", "start_char_idx": 1921, "end_char_idx": 2141, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0862dba7-c437-419d-a67c-a7a19278ee37": {"__data__": {"id_": "0862dba7-c437-419d-a67c-a7a19278ee37", "embedding": null, "metadata": {"window": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. ", "original_text": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e369201a-c028-456e-b33f-5a823cd04c4b", "node_type": "1", "metadata": {"window": "2.2.2.3 Assessment of residual risk \nRisk management generally shall be regarded as a continuous process. \n The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. ", "original_text": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "ba2e4f545fc0da42c7de6141d39b31f669643c56e6e13ae1283184a9d6d49a7c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8a6a3656-e862-4e1e-9566-98904db6b57b", "node_type": "1", "metadata": {"window": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n"}, "hash": "11add81c186a517f9808b9027fabad6ba37da3ad48bd0a23b678bbe123f9db2b", "class_name": "RelatedNodeInfo"}}, "text": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . ", "start_char_idx": 2141, "end_char_idx": 2387, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8a6a3656-e862-4e1e-9566-98904db6b57b": {"__data__": {"id_": "8a6a3656-e862-4e1e-9566-98904db6b57b", "embedding": null, "metadata": {"window": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0862dba7-c437-419d-a67c-a7a19278ee37", "node_type": "1", "metadata": {"window": "The Bank therefore, ensures that its risk ma nagement process for \nmanaging ML/TF risks are kept under regular monitoring and review. \n The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. ", "original_text": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "136842cf6b999bce94a1b933fcae447b93d4d15c0c594e9a53b78c79a4b549f3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0f8d230-720d-442f-ae36-25a8a54cfa97", "node_type": "1", "metadata": {"window": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. "}, "hash": "9e5f81bb66f67081b7204603565e2427c922f5551b1791f574263221c0f8d1ee", "class_name": "RelatedNodeInfo"}}, "text": "This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n", "start_char_idx": 2387, "end_char_idx": 2489, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a0f8d230-720d-442f-ae36-25a8a54cfa97": {"__data__": {"id_": "a0f8d230-720d-442f-ae36-25a8a54cfa97", "embedding": null, "metadata": {"window": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a6a3656-e862-4e1e-9566-98904db6b57b", "node_type": "1", "metadata": {"window": "The Bank shall revisit its assessments at least annua lly as per the provision \nin Unified Directive5. The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "a35f429fd01aba5766690419c620c7b7aa0ea52f7847120c89e0157bd62d8b2f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "058fd3d4-efa5-4488-a1c3-74bf09781e86", "node_type": "1", "metadata": {"window": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. "}, "hash": "cd6d4440eb4112e14f7110c5fc1e7d1bad3fe7ee5f6729f892854a6d703d25ac", "class_name": "RelatedNodeInfo"}}, "text": "2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. ", "start_char_idx": 2489, "end_char_idx": 2645, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "058fd3d4-efa5-4488-a1c3-74bf09781e86": {"__data__": {"id_": "058fd3d4-efa5-4488-a1c3-74bf09781e86", "embedding": null, "metadata": {"window": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a0f8d230-720d-442f-ae36-25a8a54cfa97", "node_type": "1", "metadata": {"window": "The risk-based approach principals propose \nidentification, assessment, understanding, and mitigation of ML/TF risk \nincluding explicit consideration to key risk factors and its impacts in \nmanagement of such risks. \n The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "d2435dc634df89c741d8a23bded79045472186c1378b8daa06fe82ba31b8ed41", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9f902caa-3c8a-4c05-b46c-1e1f1df83834", "node_type": "1", "metadata": {"window": "This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "19/078, clause (9)(7) "}, "hash": "7544b6040757526e591078c7d4030fc5a9d2bfec0520b1caeb80217a0b025ae7", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. ", "start_char_idx": 2645, "end_char_idx": 2825, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f902caa-3c8a-4c05-b46c-1e1f1df83834": {"__data__": {"id_": "9f902caa-3c8a-4c05-b46c-1e1f1df83834", "embedding": null, "metadata": {"window": "This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "19/078, clause (9)(7) ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2be49d31-8552-4227-ab21-3c4a73e2771f", "node_type": "4", "metadata": {"page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "058fd3d4-efa5-4488-a1c3-74bf09781e86", "node_type": "1", "metadata": {"window": "The results of the risk assessment and measures taken by the Bank to \nmanage the identified risks shall be consolidated within a comprehensive \nreport and communicated to the AML/CFT Committee and Asset (Money) \nLaundering Prevention Committee . This will ensure that the bank is aware \nof the key risks, control gaps , and remediation efforts. \n 2.2.3 Customer Acceptance Policy \nThe B ank shall clearly define the information and documents required to establish \na new relationship with a customer. The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. 19/078, clause (9)(7) ", "original_text": "The Bank shall define circumstances under \nwhich a new relationship would not be accepted, or a current relationship would be \n \n5 At present Unified Directive 2078, Directive no. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "hash": "afd5fa490c17f81817de559bf656fa579dd2fff374c5b43439872a42a89b3d5a", "class_name": "RelatedNodeInfo"}}, "text": "19/078, clause (9)(7) ", "start_char_idx": 2825, "end_char_idx": 2848, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "15997e69-4974-4fe1-9800-c562eec9b258": {"__data__": {"id_": "15997e69-4974-4fe1-9800-c562eec9b258", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n11 terminated. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "76601a4c-5955-4f68-8fe0-2347f76e0d83", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n", "original_text": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n"}, "hash": "b8b79664aa69435b3913e10a04c5e551b564d805816280f8b3c0fc4363f662dd", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n11 terminated. ", "start_char_idx": 0, "end_char_idx": 60, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "76601a4c-5955-4f68-8fe0-2347f76e0d83": {"__data__": {"id_": "76601a4c-5955-4f68-8fe0-2347f76e0d83", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n", "original_text": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "15997e69-4974-4fe1-9800-c562eec9b258", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n11 terminated. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "9780836a5389814b0ac0e577d48832f9f012d129e2d96fca90f526b22905ca1a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "78a03d23-9f82-4414-be59-a73782dee41c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n", "original_text": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n"}, "hash": "8b1d3e8fb796300f40b93aa0b4f321808cea5302a6ca9c25e3053fc6cda809ea", "class_name": "RelatedNodeInfo"}}, "text": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n", "start_char_idx": 60, "end_char_idx": 162, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "78a03d23-9f82-4414-be59-a73782dee41c": {"__data__": {"id_": "78a03d23-9f82-4414-be59-a73782dee41c", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n", "original_text": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "76601a4c-5955-4f68-8fe0-2347f76e0d83", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n", "original_text": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "6a3a75cfcd3e247a9635d534e5232b52ffe32724a4f93984c7099ca1d8d9c646", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "97d1c507-fc21-47f4-9eb4-f7321a4c0a77", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n", "original_text": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. "}, "hash": "bede6dc86f050f899fa02299914512cdec2a513d7c4f2606f39ace1df8f057f3", "class_name": "RelatedNodeInfo"}}, "text": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n", "start_char_idx": 162, "end_char_idx": 340, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "97d1c507-fc21-47f4-9eb4-f7321a4c0a77": {"__data__": {"id_": "97d1c507-fc21-47f4-9eb4-f7321a4c0a77", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n", "original_text": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "78a03d23-9f82-4414-be59-a73782dee41c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n", "original_text": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "82ea7697092c3e679536bec56eed4201e55f8677640dba58ab256ef3fd72492f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4423dab-675c-4491-9cea-c5384fd18e2b", "node_type": "1", "metadata": {"window": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n", "original_text": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n"}, "hash": "c929e7f7640043a47245ebc2744df0f03edb2e33aeeb7b628c4a54182c4de3f7", "class_name": "RelatedNodeInfo"}}, "text": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. ", "start_char_idx": 340, "end_char_idx": 467, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4423dab-675c-4491-9cea-c5384fd18e2b": {"__data__": {"id_": "b4423dab-675c-4491-9cea-c5384fd18e2b", "embedding": null, "metadata": {"window": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n", "original_text": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "97d1c507-fc21-47f4-9eb4-f7321a4c0a77", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n", "original_text": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "c4be4fe7a9d755b625126fa4123295fff07572292119cae88012ab980e921691", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5c8c1f58-f167-4b77-aa0e-61d47a8039d7", "node_type": "1", "metadata": {"window": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n", "original_text": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n"}, "hash": "e79c980d217c34505183ca6c5a4525971b9702a4cfd8fe82af73b3b76e644a1c", "class_name": "RelatedNodeInfo"}}, "text": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n", "start_char_idx": 467, "end_char_idx": 679, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5c8c1f58-f167-4b77-aa0e-61d47a8039d7": {"__data__": {"id_": "5c8c1f58-f167-4b77-aa0e-61d47a8039d7", "embedding": null, "metadata": {"window": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n", "original_text": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4423dab-675c-4491-9cea-c5384fd18e2b", "node_type": "1", "metadata": {"window": "The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n", "original_text": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "1a9cb1d10f977e528ed4252be6856e3184594bd17e7da2d7ab3046ff17a58a0f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7e34500c-dbfa-4e84-8d64-3d1163dd5c48", "node_type": "1", "metadata": {"window": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n", "original_text": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n"}, "hash": "5217bcc34fe928f68677d940b150068da02af23b0dfad34e44bf748c918ef903", "class_name": "RelatedNodeInfo"}}, "text": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n", "start_char_idx": 679, "end_char_idx": 763, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e34500c-dbfa-4e84-8d64-3d1163dd5c48": {"__data__": {"id_": "7e34500c-dbfa-4e84-8d64-3d1163dd5c48", "embedding": null, "metadata": {"window": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n", "original_text": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5c8c1f58-f167-4b77-aa0e-61d47a8039d7", "node_type": "1", "metadata": {"window": "2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n", "original_text": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "6fb214cd98e7d026d0a2fba0b3760c89d45a3995283089ee3298298c5e90b819", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a8f88646-e5af-4381-8a33-f2d66d538ffd", "node_type": "1", "metadata": {"window": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n", "original_text": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n"}, "hash": "57b40fde62285bd7176f540c133b43211c88a79b5058d80a70d4a1cfece398d7", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n", "start_char_idx": 763, "end_char_idx": 920, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a8f88646-e5af-4381-8a33-f2d66d538ffd": {"__data__": {"id_": "a8f88646-e5af-4381-8a33-f2d66d538ffd", "embedding": null, "metadata": {"window": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n", "original_text": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7e34500c-dbfa-4e84-8d64-3d1163dd5c48", "node_type": "1", "metadata": {"window": "Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n", "original_text": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "f0d66ca9cf9882a06dd3a8362bc1b533e39f0ef91a3ece3684b8ae247bbb390c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2604e495-b5e9-41b6-bcac-c29ffed09f4c", "node_type": "1", "metadata": {"window": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n", "original_text": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n"}, "hash": "0d5172ff70d72e6d9f5275810c09e72969e01338c6c352e7cbd8a0150bf598df", "class_name": "RelatedNodeInfo"}}, "text": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n", "start_char_idx": 920, "end_char_idx": 1012, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2604e495-b5e9-41b6-bcac-c29ffed09f4c": {"__data__": {"id_": "2604e495-b5e9-41b6-bcac-c29ffed09f4c", "embedding": null, "metadata": {"window": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n", "original_text": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a8f88646-e5af-4381-8a33-f2d66d538ffd", "node_type": "1", "metadata": {"window": "The Bank \nmust take all reasonable steps to confirm the true identity of the \ncustomer by collecting all relevant information and documen ts to \nascertain the identity of the beneficial owner of the account. \n \n b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n", "original_text": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "9e730b48f8e9974e1c23e33fd6ccddf1bd9df4d7a24bbd0187656cba973de93c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ab04d40-d2ca-4185-9bab-b4c745a49c48", "node_type": "1", "metadata": {"window": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n", "original_text": "d. The customer acting on behalf of another customer to open an account. \n"}, "hash": "d2614d626d94a82e8a2ac3023a521cf9823f4ea44dfd3fb04a44cfbfa0c3ed2c", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n", "start_char_idx": 1012, "end_char_idx": 1121, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ab04d40-d2ca-4185-9bab-b4c745a49c48": {"__data__": {"id_": "8ab04d40-d2ca-4185-9bab-b4c745a49c48", "embedding": null, "metadata": {"window": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n", "original_text": "d. The customer acting on behalf of another customer to open an account. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2604e495-b5e9-41b6-bcac-c29ffed09f4c", "node_type": "1", "metadata": {"window": "b. Shell banks including those banks that maintain relationship with shell \nbank. \n The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n", "original_text": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "72cd57c042bad1442faf9b1320cf5adf173a9811c663ce7f3bff88be648dfa1b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5285e0af-31bb-4297-9b85-74f17d7939e9", "node_type": "1", "metadata": {"window": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n", "original_text": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n"}, "hash": "d2d14262fbf92a238336e774a9c985d8df6912a27487194ab1b4761c08567ff5", "class_name": "RelatedNodeInfo"}}, "text": "d. The customer acting on behalf of another customer to open an account. \n", "start_char_idx": 1121, "end_char_idx": 1196, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5285e0af-31bb-4297-9b85-74f17d7939e9": {"__data__": {"id_": "5285e0af-31bb-4297-9b85-74f17d7939e9", "embedding": null, "metadata": {"window": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n", "original_text": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ab04d40-d2ca-4185-9bab-b4c745a49c48", "node_type": "1", "metadata": {"window": "The Bank shall ensure that it does not maintain any relationship with \nshell entities including those banks that maintain relationship with shell \nbank. \n \n c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n", "original_text": "d. The customer acting on behalf of another customer to open an account. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "be3a2ba52f8e1555f142939de9b8713ccbad45245917b2a2d0a6d2f83937e84a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8fbe5691-8155-4aee-a535-dfeb2a06cf9b", "node_type": "1", "metadata": {"window": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n", "original_text": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n"}, "hash": "917e775da62537a3feea18bf8ec363a25cb861f470e6fb9a46bc77f840ceef1b", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n", "start_char_idx": 1196, "end_char_idx": 1332, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8fbe5691-8155-4aee-a535-dfeb2a06cf9b": {"__data__": {"id_": "8fbe5691-8155-4aee-a535-dfeb2a06cf9b", "embedding": null, "metadata": {"window": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n", "original_text": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5285e0af-31bb-4297-9b85-74f17d7939e9", "node_type": "1", "metadata": {"window": "c. Unregistered entity (except allowed by regulator or legal body for \nspecific purpose). \n The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n", "original_text": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "165979e70a4def2b1a562b3600fa5e5dc2fcbcbdc0ebe0f683a888e01cf1fee5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "032cec94-aeb3-436e-a40f-60f21acda04f", "node_type": "1", "metadata": {"window": "d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n", "original_text": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n"}, "hash": "cf2de69b62ee4d05952e0767ad7212b122b86c08261af7a82ccaf6d1d00f5eca", "class_name": "RelatedNodeInfo"}}, "text": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n", "start_char_idx": 1332, "end_char_idx": 1480, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "032cec94-aeb3-436e-a40f-60f21acda04f": {"__data__": {"id_": "032cec94-aeb3-436e-a40f-60f21acda04f", "embedding": null, "metadata": {"window": "d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n", "original_text": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8fbe5691-8155-4aee-a535-dfeb2a06cf9b", "node_type": "1", "metadata": {"window": "The Bank shall not establish relationship with entities that are not \nregistered under the law of Nepal. \n \n d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n", "original_text": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "3d2fc8b68e6499147b4eb7489bf5af1633b910b352979f5908f2ddc7f0ef3532", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6b7d8b5b-95aa-4bb5-bc55-174503dd4e62", "node_type": "1", "metadata": {"window": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. ", "original_text": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n"}, "hash": "f2d38e6c57de8c958e2ffa8669a37daffc22a16ab814c8ab7d5709a1e6ad123d", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n", "start_char_idx": 1480, "end_char_idx": 1622, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6b7d8b5b-95aa-4bb5-bc55-174503dd4e62": {"__data__": {"id_": "6b7d8b5b-95aa-4bb5-bc55-174503dd4e62", "embedding": null, "metadata": {"window": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. ", "original_text": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "032cec94-aeb3-436e-a40f-60f21acda04f", "node_type": "1", "metadata": {"window": "d. The customer acting on behalf of another customer to open an account. \n The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n", "original_text": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "534d914a71474b2193d9320cf2d810e26cd9368d1d08942b7abe7b0ae573aacc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "274dcbca-d18d-4650-a190-c0911bb99942", "node_type": "1", "metadata": {"window": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n"}, "hash": "6d6af0696b257d6402fc4c26c3dcabc2daba1a647b2221df6918a18327bf26ab", "class_name": "RelatedNodeInfo"}}, "text": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n", "start_char_idx": 1622, "end_char_idx": 2012, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "274dcbca-d18d-4650-a190-c0911bb99942": {"__data__": {"id_": "274dcbca-d18d-4650-a190-c0911bb99942", "embedding": null, "metadata": {"window": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6b7d8b5b-95aa-4bb5-bc55-174503dd4e62", "node_type": "1", "metadata": {"window": "The Bank shall not establish relationship with a customer who is acting \non other person\u2019s behalf without any legal right to do so. \n \n e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. ", "original_text": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "b0f90c94587148745035d00ca265d6bdeebfa31ffeba88047e635c50ab5db2cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4dea95ae-199c-4134-af0a-d58ebfff00f9", "node_type": "1", "metadata": {"window": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n"}, "hash": "f331f9b3c16fce66d065d9c0131f1894f87121ab06ce1b4934b89fdec6ce4cd5", "class_name": "RelatedNodeInfo"}}, "text": "g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n", "start_char_idx": 2012, "end_char_idx": 2153, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4dea95ae-199c-4134-af0a-d58ebfff00f9": {"__data__": {"id_": "4dea95ae-199c-4134-af0a-d58ebfff00f9", "embedding": null, "metadata": {"window": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "274dcbca-d18d-4650-a190-c0911bb99942", "node_type": "1", "metadata": {"window": "e. Entities/persons appearing in sanctioned lists of Nepal Government \nand int ernational bodies that include UN, HMT, EU, OFAC, Australian \nlist. \n The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "6395d06f6d001b793eaaff25401c00a71feea2641bd75ebb49336588d4b15cb1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ebec4eac-8275-4125-8b61-3c7cbd201d55", "node_type": "1", "metadata": {"window": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "6 Unified Directive 2078, directive no. "}, "hash": "49e35de7dac140636230c5b69c700b83e807af9e2441ff07f84dc50b8b7692b8", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n", "start_char_idx": 2153, "end_char_idx": 2379, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ebec4eac-8275-4125-8b61-3c7cbd201d55": {"__data__": {"id_": "ebec4eac-8275-4125-8b61-3c7cbd201d55", "embedding": null, "metadata": {"window": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "6 Unified Directive 2078, directive no. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4dea95ae-199c-4134-af0a-d58ebfff00f9", "node_type": "1", "metadata": {"window": "The Bank shall not establish relationship or enter into any transaction \ndirectly or indirectly with sanctioned person, group and entity. \n \n f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "1ed7de659f41c9665f2faad34f9c65bb9db7dc2b847f19825f2eb82b879fa2c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "50b32ea2-6fc6-481c-865a-980bec925996", "node_type": "1", "metadata": {"window": "g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) "}, "hash": "dbe261d34aa9c1d61f1caf4b92752008435f1c3b915027f066ffb337bfea16b3", "class_name": "RelatedNodeInfo"}}, "text": "6 Unified Directive 2078, directive no. ", "start_char_idx": 2379, "end_char_idx": 2419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "50b32ea2-6fc6-481c-865a-980bec925996": {"__data__": {"id_": "50b32ea2-6fc6-481c-865a-980bec925996", "embedding": null, "metadata": {"window": "g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87", "node_type": "4", "metadata": {"page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ebec4eac-8275-4125-8b61-3c7cbd201d55", "node_type": "1", "metadata": {"window": "f. The customers who are unwilling and/or unable to pr ovide mandatory \ndocuments, information, and/or details required for customer \nidentification and verification.6 \nThe bank shall not establish or continue relationship with a customer \nwho is reluctant to provide documents, and information mandatorily \nrequire d to identify and access ML/TF risk associated with the \ncustomer. \n \n g. The customers whose documents, information, and other details \nprovided to the Bank appear conflicting to the identity of the customer. \n The Bank shall not establish relationship with a customer whose \ninformation provided to the Bank is found to be suspectable, dubious, \nconflicting, or misleading in accessing ML/TF risk associated with the \ncustomer. \n \n \n \n 6 Unified Directive 2078, directive no. 19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "original_text": "6 Unified Directive 2078, directive no. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "hash": "ce44801f0ccc4757d2aba00d3f8336754f33bf609d0fed9b03815d59861821eb", "class_name": "RelatedNodeInfo"}}, "text": "19/078, Clause ( 16) (7) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8 /16 BS) ", "start_char_idx": 2419, "end_char_idx": 2514, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f2cbf011-bc22-410f-b36e-05f7c6edc459": {"__data__": {"id_": "f2cbf011-bc22-410f-b36e-05f7c6edc459", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n", "original_text": "i. Those who deal with arma ments. \n"}, "hash": "860a9418896338a4c2872c68648b207eb1bac9f149810a7c02101b253ab9fc94", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n", "start_char_idx": 0, "end_char_idx": 359, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785": {"__data__": {"id_": "346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n", "original_text": "i. Those who deal with arma ments. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f2cbf011-bc22-410f-b36e-05f7c6edc459", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "75a978c1fe9930d4d0a18cc55db59bff3924cd266c32fd62c327f30562134fb9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1c75b713-6f92-4ec8-9218-3bb3e58c4e03", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. ", "original_text": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n"}, "hash": "288fcc06ba7b0589094df878e26723429cecef2ba737fa2b8403a11f3d3a400a", "class_name": "RelatedNodeInfo"}}, "text": "i. Those who deal with arma ments. \n", "start_char_idx": 359, "end_char_idx": 396, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1c75b713-6f92-4ec8-9218-3bb3e58c4e03": {"__data__": {"id_": "1c75b713-6f92-4ec8-9218-3bb3e58c4e03", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. ", "original_text": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n", "original_text": "i. Those who deal with arma ments. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "0d7faac7e4d8b355690934a1fe45be0de87a674b75361b3b00b0f57a428eb540", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ccc440cc-471f-40a5-a4b4-2fe156a969fc", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. ", "original_text": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n"}, "hash": "f18741ca51e30ecf78a38e8cad05d9f899dff1fc942f4c50e8ebb843c45f4b8f", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n", "start_char_idx": 396, "end_char_idx": 487, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ccc440cc-471f-40a5-a4b4-2fe156a969fc": {"__data__": {"id_": "ccc440cc-471f-40a5-a4b4-2fe156a969fc", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. ", "original_text": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1c75b713-6f92-4ec8-9218-3bb3e58c4e03", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. ", "original_text": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "438bc7899d1d8c31b3e6ecb7e5aa37fe52ace425b2bea667f06025ac151ca933", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "33b8bf66-a163-4af4-8f34-974afdb37833", "node_type": "1", "metadata": {"window": "i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n", "original_text": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n"}, "hash": "4e12ea17b6c74396885ebe8c690da909d0953c5ddbe9d877c5566e5f73a9c0f1", "class_name": "RelatedNodeInfo"}}, "text": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n", "start_char_idx": 487, "end_char_idx": 572, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "33b8bf66-a163-4af4-8f34-974afdb37833": {"__data__": {"id_": "33b8bf66-a163-4af4-8f34-974afdb37833", "embedding": null, "metadata": {"window": "i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n", "original_text": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ccc440cc-471f-40a5-a4b4-2fe156a969fc", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. ", "original_text": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "e64f141b7d0b5c9a431f7e3c000dbb2db897c952c4d7ff2c249569d4bc862dd9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "364f57dc-fe18-47a9-816d-ea654a4b2b7c", "node_type": "1", "metadata": {"window": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. ", "original_text": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. "}, "hash": "450b23eaef2726ba5adc087fe90ebfea29cbfe879710b3ea0fe08a5a0a2c72e9", "class_name": "RelatedNodeInfo"}}, "text": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n", "start_char_idx": 572, "end_char_idx": 904, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "364f57dc-fe18-47a9-816d-ea654a4b2b7c": {"__data__": {"id_": "364f57dc-fe18-47a9-816d-ea654a4b2b7c", "embedding": null, "metadata": {"window": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. ", "original_text": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "33b8bf66-a163-4af4-8f34-974afdb37833", "node_type": "1", "metadata": {"window": "i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n", "original_text": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "7677e7410873480fc82ceac96b37f305c1c6b239fdc387adf828ceac046dfd31", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7", "node_type": "1", "metadata": {"window": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n", "original_text": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. "}, "hash": "560000041ce5f02dfcc1fb71ff373cef980a3200a7163cd2d6e9971fb8522f3c", "class_name": "RelatedNodeInfo"}}, "text": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. ", "start_char_idx": 904, "end_char_idx": 1148, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7": {"__data__": {"id_": "cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7", "embedding": null, "metadata": {"window": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n", "original_text": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "364f57dc-fe18-47a9-816d-ea654a4b2b7c", "node_type": "1", "metadata": {"window": "The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. ", "original_text": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "cdae1ddf4860b6dc1d13bafd3edc84d7020cd6f96ef7e67a3bee603c60e3b38e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d42c8120-3255-4b13-83d4-eb2cad0d73c0", "node_type": "1", "metadata": {"window": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n", "original_text": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n"}, "hash": "8b5de5addef52b42ff7569ac1983e92316e3adbd9a19f0633116a7f62da9cd84", "class_name": "RelatedNodeInfo"}}, "text": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. ", "start_char_idx": 1148, "end_char_idx": 1344, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d42c8120-3255-4b13-83d4-eb2cad0d73c0": {"__data__": {"id_": "d42c8120-3255-4b13-83d4-eb2cad0d73c0", "embedding": null, "metadata": {"window": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n", "original_text": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7", "node_type": "1", "metadata": {"window": "j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n", "original_text": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "21167a34a88d035df091ca4ccd67a8f2ec1f4b76d0b59fc2962ef98b0f7be3c6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0a61de61-47dd-42cd-94be-4467bdc87028", "node_type": "1", "metadata": {"window": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n", "original_text": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. "}, "hash": "0e4803e0141abf6069b253770ad03c1b386b181cae0cbdcb666da2b6e1cd84b2", "class_name": "RelatedNodeInfo"}}, "text": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n", "start_char_idx": 1344, "end_char_idx": 1508, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0a61de61-47dd-42cd-94be-4467bdc87028": {"__data__": {"id_": "0a61de61-47dd-42cd-94be-4467bdc87028", "embedding": null, "metadata": {"window": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n", "original_text": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d42c8120-3255-4b13-83d4-eb2cad0d73c0", "node_type": "1", "metadata": {"window": "k. End of relationship \nWhere the Bank is unable to apply appropriate KYC measures due t o \nnon-furnishing of information and /or non -cooperation by a n existing \ncustomer, the Bank shall initiate to terminate the business relationship8 \nafter issuing notice to the customer explaining the reasons for taking \nsuch a decision. \n 2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n", "original_text": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "43f8416631906832793478bc417a721277ddadd4d695d5e7fb3cc068930f4caf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a11f6bc2-d45c-4302-9f93-15f941acefa1", "node_type": "1", "metadata": {"window": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. ", "original_text": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n"}, "hash": "473affe8cc6764f66307b1f669cac4aac3776c2096d1a0a8d13ff696633b82ff", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. ", "start_char_idx": 1508, "end_char_idx": 1726, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a11f6bc2-d45c-4302-9f93-15f941acefa1": {"__data__": {"id_": "a11f6bc2-d45c-4302-9f93-15f941acefa1", "embedding": null, "metadata": {"window": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. ", "original_text": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0a61de61-47dd-42cd-94be-4467bdc87028", "node_type": "1", "metadata": {"window": "2.2.4 Monitoring of Transac tions \nThe Bank shall monitor the transactions of its customers based on risk profile, size, \ncomplexity, and activities to check and ensure whether they are consistent with the \nbank\u2019s knowledge of the customer. Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n", "original_text": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "81d865b4556b59012dfd43daac2f32862320e2870b53203393e9486fca0a932d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b20c38b6-59e4-43a9-9b10-8ef6127ecb04", "node_type": "1", "metadata": {"window": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n"}, "hash": "1818a86086d31126545f1d8e0d7c7776a99fc489e83a5c0c0787a282bf2e7627", "class_name": "RelatedNodeInfo"}}, "text": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n", "start_char_idx": 1726, "end_char_idx": 2042, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b20c38b6-59e4-43a9-9b10-8ef6127ecb04": {"__data__": {"id_": "b20c38b6-59e4-43a9-9b10-8ef6127ecb04", "embedding": null, "metadata": {"window": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a11f6bc2-d45c-4302-9f93-15f941acefa1", "node_type": "1", "metadata": {"window": "Transaction monitoring shall be conducted to \nidentify any unusual activity and to assist the Bank in meeting statutory obligations \nwith respect to reporting potentially suspicious transactions. In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. ", "original_text": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "2b3abf47ee3cd5dc38e32248c644fccd7b4a72464fe809b5dde7f7640bd34f01", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ed17db20-b032-4c05-a08d-760554d40e33", "node_type": "1", "metadata": {"window": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n"}, "hash": "ae097f639364765af1c59a8e827da5838d82114343a990d854b4359cb0187b4b", "class_name": "RelatedNodeInfo"}}, "text": "2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n", "start_char_idx": 2042, "end_char_idx": 2248, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ed17db20-b032-4c05-a08d-760554d40e33": {"__data__": {"id_": "ed17db20-b032-4c05-a08d-760554d40e33", "embedding": null, "metadata": {"window": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b20c38b6-59e4-43a9-9b10-8ef6127ecb04", "node_type": "1", "metadata": {"window": "In identifying, \ninvestigating, and reporting suspicious activity, banks can collect relevant \ninformation fro m various departments, branches, and subsidiaries. \n The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "b6f36ca627cf7e84694d347087ca88e1082e539c090f5905519a74845c09f556", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6e13df71-09d7-4d1e-9790-ff7ffdf84823", "node_type": "1", "metadata": {"window": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "7 Prohibition on dealing in crypto currency is an existing provision of our policy. "}, "hash": "8b0f11e9054e5acad14b213cf67f4bd02b8a0e658f070a28f6b40edf4f66c9c3", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n", "start_char_idx": 2248, "end_char_idx": 2646, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6e13df71-09d7-4d1e-9790-ff7ffdf84823": {"__data__": {"id_": "6e13df71-09d7-4d1e-9790-ff7ffdf84823", "embedding": null, "metadata": {"window": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "7 Prohibition on dealing in crypto currency is an existing provision of our policy. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed17db20-b032-4c05-a08d-760554d40e33", "node_type": "1", "metadata": {"window": "The Bank shall give more attention to the transactions that do not match with the \ncustomers/profile, the line of business, high value transactions, high account \nturnover and transactions exceeding threshol d limit. The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "aee2534fcd883105310fbe50825173ca78290332d7f0b40498f28d8a76625d53", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d51236fd-2a0c-4de1-b447-a5aca9c8206b", "node_type": "1", "metadata": {"window": "2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) "}, "hash": "8934ee4809aaa620fa0f636e2567f708be00cc41f183005becca49302973587e", "class_name": "RelatedNodeInfo"}}, "text": "7 Prohibition on dealing in crypto currency is an existing provision of our policy. ", "start_char_idx": 2646, "end_char_idx": 2730, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d51236fd-2a0c-4de1-b447-a5aca9c8206b": {"__data__": {"id_": "d51236fd-2a0c-4de1-b447-a5aca9c8206b", "embedding": null, "metadata": {"window": "2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144", "node_type": "4", "metadata": {"page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6e13df71-09d7-4d1e-9790-ff7ffdf84823", "node_type": "1", "metadata": {"window": "The automated system shall \nbe deployed for monitoring purpose and any deviation in the transaction performed \nin the account against the customer profile shall be followed by reviewing of the \ncustomer profile and by conducting proper due diligence based on transactions and \nrisk categorization of the customer. \n 2.3 Customer Due Diligence \nThe bank shall conduct due diligence of its customers and update such due diligence \nthroughout the banking relationship with the customer based on the customer risk level . \n The Bank shall apply customer due diligence in the following circumstances:9 \na. Establishing a new business relationship \nb. Opening of an account \nc. Carrying out occasional transactions above the established threshold limit \nd. Cross -border and domestic wire transfers \ne. When there are doubts about the authenticity or adequacy of previously obtained \ncustomer identification data. \n \n 7 Prohibition on dealing in crypto currency is an existing provision of our policy. NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "original_text": "7 Prohibition on dealing in crypto currency is an existing provision of our policy. ", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "hash": "b5d3bca70a9e6331dfad8754bf5b27fa31b5663100f8d565ccb96c9632d38698", "class_name": "RelatedNodeInfo"}}, "text": "NRB has banned dealing in \ncrypto currency through the notice published on 2078 /10/09 \n8 ALPA \u2013 Chapter 3, Clause (7)( ANA )(2) \n9 ALPA \u2013 Chapter 2, Clause (7)( KA)(1) ", "start_char_idx": 2730, "end_char_idx": 2899, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "464b1f97-e2e7-4c08-831e-26f486e2c433": {"__data__": {"id_": "464b1f97-e2e7-4c08-831e-26f486e2c433", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "58ab7dd7-68b1-4ed3-b40f-38b076c70908", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . ", "original_text": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n"}, "hash": "91e126c40fd083ae658f6695e8ba10dc04e0e5b37332e03320633e12b820b94b", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n", "start_char_idx": 0, "end_char_idx": 116, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "58ab7dd7-68b1-4ed3-b40f-38b076c70908": {"__data__": {"id_": "58ab7dd7-68b1-4ed3-b40f-38b076c70908", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . ", "original_text": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "464b1f97-e2e7-4c08-831e-26f486e2c433", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "02e28f5e73af5bcae466349c7a3759b42a185cae137065ff39cf4e4d6602ddb6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ae0078e0-7d33-47a4-b481-d98e71589dce", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n", "original_text": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. "}, "hash": "d0b0c36464093642e104c5dbfc49a34b667268ffa11905a64f0ad4998a9d8af6", "class_name": "RelatedNodeInfo"}}, "text": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n", "start_char_idx": 116, "end_char_idx": 225, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ae0078e0-7d33-47a4-b481-d98e71589dce": {"__data__": {"id_": "ae0078e0-7d33-47a4-b481-d98e71589dce", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n", "original_text": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "58ab7dd7-68b1-4ed3-b40f-38b076c70908", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . ", "original_text": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "c47c8e3498b239ec055ed47a301781f20fac29ae4222978c600da940fed1c40f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3f6a626d-e8cb-4481-a77f-848c263aa0a7", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. ", "original_text": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n"}, "hash": "fdd966824e29b56cbec819f7205deba4955e6afc98d62d29639833e5d4929d33", "class_name": "RelatedNodeInfo"}}, "text": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. ", "start_char_idx": 225, "end_char_idx": 465, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3f6a626d-e8cb-4481-a77f-848c263aa0a7": {"__data__": {"id_": "3f6a626d-e8cb-4481-a77f-848c263aa0a7", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. ", "original_text": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ae0078e0-7d33-47a4-b481-d98e71589dce", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n", "original_text": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "e26ac95ac00334f5fa658eda6ad5e78c411489022f35196eb87cd7e229f8fd66", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "412c18f5-2adf-4945-acb2-777ae502bdc3", "node_type": "1", "metadata": {"window": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n", "original_text": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . "}, "hash": "692fff963389fea150ad238633ade102c76ee297a122978011ebcfd8993b2383", "class_name": "RelatedNodeInfo"}}, "text": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n", "start_char_idx": 465, "end_char_idx": 630, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "412c18f5-2adf-4945-acb2-777ae502bdc3": {"__data__": {"id_": "412c18f5-2adf-4945-acb2-777ae502bdc3", "embedding": null, "metadata": {"window": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n", "original_text": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3f6a626d-e8cb-4481-a77f-848c263aa0a7", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. ", "original_text": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "01888d24ffa10098021a41d22f8a35849376ef6396572f08ced8df8a70d493de", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ef4cefad-0d6b-47c8-9cb9-039fb64b5457", "node_type": "1", "metadata": {"window": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ", "original_text": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n"}, "hash": "794f16a8b02c745dc40c471381fb4c71406bb949f70ccb7aaf7418374d96c073", "class_name": "RelatedNodeInfo"}}, "text": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . ", "start_char_idx": 630, "end_char_idx": 802, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ef4cefad-0d6b-47c8-9cb9-039fb64b5457": {"__data__": {"id_": "ef4cefad-0d6b-47c8-9cb9-039fb64b5457", "embedding": null, "metadata": {"window": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ", "original_text": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "412c18f5-2adf-4945-acb2-777ae502bdc3", "node_type": "1", "metadata": {"window": "g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n", "original_text": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "600098c8ba65dbbae615f7ec47be29e85678f2fb4ae0fc7650b5f0a775fa9172", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5ccf1886-586d-469b-9c5d-0edcc27c58c9", "node_type": "1", "metadata": {"window": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. ", "original_text": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. "}, "hash": "f7a1f9f53b783a76cb7391f83f626f66412cdf9c9910a7ca70e488df6173ffe4", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n", "start_char_idx": 802, "end_char_idx": 918, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5ccf1886-586d-469b-9c5d-0edcc27c58c9": {"__data__": {"id_": "5ccf1886-586d-469b-9c5d-0edcc27c58c9", "embedding": null, "metadata": {"window": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. ", "original_text": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ef4cefad-0d6b-47c8-9cb9-039fb64b5457", "node_type": "1", "metadata": {"window": "2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ", "original_text": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "d6a9ecdead0ca450c57d8e12e759330c3d898abb78064c83144b3038532ec54b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fb5057d6-151f-45f4-94e3-0b72ee4db0b1", "node_type": "1", "metadata": {"window": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n"}, "hash": "0da938073aafc22fc284e1642c58df99ee3531d28ee1c765d834d24ba57c04b5", "class_name": "RelatedNodeInfo"}}, "text": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. ", "start_char_idx": 918, "end_char_idx": 1053, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fb5057d6-151f-45f4-94e3-0b72ee4db0b1": {"__data__": {"id_": "fb5057d6-151f-45f4-94e3-0b72ee4db0b1", "embedding": null, "metadata": {"window": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5ccf1886-586d-469b-9c5d-0edcc27c58c9", "node_type": "1", "metadata": {"window": "Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. ", "original_text": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "9c2fe9cc57cc9bf5f9bc82eb1b84e210ae00cc3c69a8a7801cfe03de8958e830", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6876f76e-e347-4f20-ac56-af1923c786a1", "node_type": "1", "metadata": {"window": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. "}, "hash": "1a7a81abe8ec48c40d44edd115422cdc2ff2166e998eee1b3101fe31935ab4c6", "class_name": "RelatedNodeInfo"}}, "text": "The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n", "start_char_idx": 1053, "end_char_idx": 1233, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6876f76e-e347-4f20-ac56-af1923c786a1": {"__data__": {"id_": "6876f76e-e347-4f20-ac56-af1923c786a1", "embedding": null, "metadata": {"window": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fb5057d6-151f-45f4-94e3-0b72ee4db0b1", "node_type": "1", "metadata": {"window": "a. Simplified Customer Due Diligence (SCDD): \nSimplified CDD is the lowest level of due diligence, which shall apply on those \ncustomers with low risk of ML/TF activity . The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "c23ef482206981ec3502af07f886465ee2c9a08989d84a7f46d4bcf2ca8bf23f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d1479bee-44ae-4a44-93f5-f3792b1cd94a", "node_type": "1", "metadata": {"window": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. "}, "hash": "48fee9f66055a9aa9931b1924f401d258f737d78424b483a40bf3f4cc18cfc15", "class_name": "RelatedNodeInfo"}}, "text": "c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ", "start_char_idx": 1233, "end_char_idx": 1358, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d1479bee-44ae-4a44-93f5-f3792b1cd94a": {"__data__": {"id_": "d1479bee-44ae-4a44-93f5-f3792b1cd94a", "embedding": null, "metadata": {"window": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6876f76e-e347-4f20-ac56-af1923c786a1", "node_type": "1", "metadata": {"window": "The Bank shall establish a separate \nsimplified mechanism to obtain information/ and documents of such customers. \n b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "79086401a1a120cb2df81faa95cf6497d5ba625db795490e0e86382f804d8ae3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "405fb950-67ab-482b-9e74-48979480e5c4", "node_type": "1", "metadata": {"window": "The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n "}, "hash": "f2daf11d8ca4eb23ff9daafb4dbe645d53534cf7bb65e767fad83270505e3d95", "class_name": "RelatedNodeInfo"}}, "text": "ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. ", "start_char_idx": 1358, "end_char_idx": 1453, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "405fb950-67ab-482b-9e74-48979480e5c4": {"__data__": {"id_": "405fb950-67ab-482b-9e74-48979480e5c4", "embedding": null, "metadata": {"window": "The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a", "node_type": "4", "metadata": {"page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d1479bee-44ae-4a44-93f5-f3792b1cd94a", "node_type": "1", "metadata": {"window": "b. Customer Due Diligence (CDD): \nCustomer du e diligence shall be applied to those customers who have \nmoderately higher ML/TF risk. The due diligence shall be made to understand \nthe purpose and intended nature of the business relationship from the type of \ntransactions or business relationship establi shed. \n c. Enhanced Customer Due Diligence (ECDD) \nThe Bank shall apply ECDD measures if the customer risk is deemed to be \nhigher. ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "original_text": "ECDD shall be applied to satisfy the Bank for the establishing and \ncontinuing relationship. ", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "hash": "e51ab9174588d00a7bf07d9f658e4ef17da91ce149615531edf4b2ab24a7f277", "class_name": "RelatedNodeInfo"}}, "text": "The bank may apply ECDD to low or medium risk \ncustomer on its own discretion. \n \n \n ", "start_char_idx": 1453, "end_char_idx": 1540, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8d404377-1b77-4704-b523-3dcbd4c8b233": {"__data__": {"id_": "8d404377-1b77-4704-b523-3dcbd4c8b233", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d66d061-fd5a-497c-ba1e-a14318f7f516", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n", "original_text": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n"}, "hash": "e279ea40185bb880f53292942ee9f02035877e0d4898ee730abd1bc8506f7b34", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. ", "start_char_idx": 0, "end_char_idx": 323, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d66d061-fd5a-497c-ba1e-a14318f7f516": {"__data__": {"id_": "4d66d061-fd5a-497c-ba1e-a14318f7f516", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n", "original_text": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8d404377-1b77-4704-b523-3dcbd4c8b233", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "562a33ef462b973382b86da2c3b9afa107d234a40a3d9ef53c1d566c73a3955a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. ", "original_text": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n"}, "hash": "11758cfc39d50d09ac898123474c2d7f7dfdbef0b031529911b732f04f401ed3", "class_name": "RelatedNodeInfo"}}, "text": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n", "start_char_idx": 323, "end_char_idx": 518, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e": {"__data__": {"id_": "0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. ", "original_text": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d66d061-fd5a-497c-ba1e-a14318f7f516", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n", "original_text": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "0aea4f762993e9a5a1c5ae51aec093cb9d9852ce941baef776bc4904f426018b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "71b50d05-a9dd-4398-b6af-ea4c37803aef", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n", "original_text": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. "}, "hash": "26ad2e55f908a8ff26e713584b46d8e930919c2a3a9fa17fc411d8e468f9c9fa", "class_name": "RelatedNodeInfo"}}, "text": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n", "start_char_idx": 518, "end_char_idx": 689, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "71b50d05-a9dd-4398-b6af-ea4c37803aef": {"__data__": {"id_": "71b50d05-a9dd-4398-b6af-ea4c37803aef", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n", "original_text": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. ", "original_text": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "b699dfd27cdc502561eaa3a841173f9e5357e1af0a6a82e4b08ce8205eaff1a4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "60b16a6e-e240-4685-8033-5110a9e2662e", "node_type": "1", "metadata": {"window": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n", "original_text": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n"}, "hash": "91c2fda87f609454d2c30637e7a5ff835ab29ac31f04f9dab2b80c209263eab5", "class_name": "RelatedNodeInfo"}}, "text": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. ", "start_char_idx": 689, "end_char_idx": 815, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "60b16a6e-e240-4685-8033-5110a9e2662e": {"__data__": {"id_": "60b16a6e-e240-4685-8033-5110a9e2662e", "embedding": null, "metadata": {"window": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n", "original_text": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "71b50d05-a9dd-4398-b6af-ea4c37803aef", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n", "original_text": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "cd1dee0bdfeb4c43bcf359369a42f75bfa334e14141515335cb30c506360aa53", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5293cdfc-2093-4688-848c-c294e9d766ea", "node_type": "1", "metadata": {"window": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n", "original_text": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. "}, "hash": "f93417eb6f863f4a6c504fb8e9ade9946c3ca35270a7ba334655e13c68da89c2", "class_name": "RelatedNodeInfo"}}, "text": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n", "start_char_idx": 815, "end_char_idx": 927, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5293cdfc-2093-4688-848c-c294e9d766ea": {"__data__": {"id_": "5293cdfc-2093-4688-848c-c294e9d766ea", "embedding": null, "metadata": {"window": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n", "original_text": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "60b16a6e-e240-4685-8033-5110a9e2662e", "node_type": "1", "metadata": {"window": "Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n", "original_text": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "a52a10bda3ba98a08d7816270359e84c330ca31e90a3fdcf26426fcebd44a625", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c71e7e12-cedf-4542-b14b-231a8ddcb334", "node_type": "1", "metadata": {"window": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. ", "original_text": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n"}, "hash": "fd9caa1858b4b43a12ad1f2a6bc41f55f495a1ac295d2cb88814659880bd53ed", "class_name": "RelatedNodeInfo"}}, "text": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. ", "start_char_idx": 927, "end_char_idx": 1139, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c71e7e12-cedf-4542-b14b-231a8ddcb334": {"__data__": {"id_": "c71e7e12-cedf-4542-b14b-231a8ddcb334", "embedding": null, "metadata": {"window": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. ", "original_text": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5293cdfc-2093-4688-848c-c294e9d766ea", "node_type": "1", "metadata": {"window": "The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n", "original_text": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "07e6bf2415889dfeb6ec3f0ced3aed22d366912b4168f3708a208423ed0c64ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c575058c-205e-4995-955e-14e1968bfa57", "node_type": "1", "metadata": {"window": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . ", "original_text": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n"}, "hash": "7bcfc8b6e2e7375a50b7127cee6eb410279772315bc90b257d9e9fa34de1581e", "class_name": "RelatedNodeInfo"}}, "text": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n", "start_char_idx": 1139, "end_char_idx": 1253, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c575058c-205e-4995-955e-14e1968bfa57": {"__data__": {"id_": "c575058c-205e-4995-955e-14e1968bfa57", "embedding": null, "metadata": {"window": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . ", "original_text": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c71e7e12-cedf-4542-b14b-231a8ddcb334", "node_type": "1", "metadata": {"window": "For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. ", "original_text": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "93f85d829f378896e743a0dfdc28bd4ece3a65ef67bf7e450e253aa4a9b7a68f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d72190e5-f2aa-44a6-b790-d25e61ac052d", "node_type": "1", "metadata": {"window": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. ", "original_text": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n"}, "hash": "741457f1774afe350603fc037b3daf1120c9c9693f47f9f42d49c65056206147", "class_name": "RelatedNodeInfo"}}, "text": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n", "start_char_idx": 1253, "end_char_idx": 1548, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d72190e5-f2aa-44a6-b790-d25e61ac052d": {"__data__": {"id_": "d72190e5-f2aa-44a6-b790-d25e61ac052d", "embedding": null, "metadata": {"window": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. ", "original_text": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c575058c-205e-4995-955e-14e1968bfa57", "node_type": "1", "metadata": {"window": "Alert scenarios and se tting limit for particular activity \nshall be as guided at least by AML/CFT Committee. \n In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . ", "original_text": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "8336f2d91ebe482aca5dfd71ca672c566aff1d6f3bd85288efa7c6ca4b5e854b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4288da3-3532-4958-8cbb-5f314e568859", "node_type": "1", "metadata": {"window": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n", "original_text": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. "}, "hash": "fa7680a9adda1175d71503bc6748d46a38b4de3d36c87e13e8581f4dbaa76482", "class_name": "RelatedNodeInfo"}}, "text": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n", "start_char_idx": 1548, "end_char_idx": 1662, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4288da3-3532-4958-8cbb-5f314e568859": {"__data__": {"id_": "b4288da3-3532-4958-8cbb-5f314e568859", "embedding": null, "metadata": {"window": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n", "original_text": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d72190e5-f2aa-44a6-b790-d25e61ac052d", "node_type": "1", "metadata": {"window": "In addition to the regular activities, the Bank shall provide special attention to the following \nactivities: \na. Wire Transfer : \nMessages associated with wire transfers shall be subject to ongoing monitoring. In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. ", "original_text": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "ae01cb59e21d08bab10876ac87e1f023155149bbbeb3bd06be76842f326773a3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d1691c76-81d3-42d2-8b4b-13216c91266d", "node_type": "1", "metadata": {"window": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. ", "original_text": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . "}, "hash": "75620676dc3cd46041f3a9e9983fe559d0dd3b757a0d8087af60ba5cd72b6d58", "class_name": "RelatedNodeInfo"}}, "text": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. ", "start_char_idx": 1662, "end_char_idx": 1769, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d1691c76-81d3-42d2-8b4b-13216c91266d": {"__data__": {"id_": "d1691c76-81d3-42d2-8b4b-13216c91266d", "embedding": null, "metadata": {"window": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. ", "original_text": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4288da3-3532-4958-8cbb-5f314e568859", "node_type": "1", "metadata": {"window": "In the \ncontext of wire transfers, the Bank shall identify the sender and beneficiary of the wire \ntransfer. \n \n b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n", "original_text": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "3bae29179ac14484b7b4b74c716b207d61c59529b3d1632390f7dce7f2074c6b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "81ec9bf4-9a1f-4c66-ab51-9c83014d037b", "node_type": "1", "metadata": {"window": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. ", "original_text": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. "}, "hash": "cfd3a88e53c30e86c7730d2e5d0b3651b57c0a18c8691dbba032fa5da3da55b2", "class_name": "RelatedNodeInfo"}}, "text": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . ", "start_char_idx": 1769, "end_char_idx": 1912, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "81ec9bf4-9a1f-4c66-ab51-9c83014d037b": {"__data__": {"id_": "81ec9bf4-9a1f-4c66-ab51-9c83014d037b", "embedding": null, "metadata": {"window": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. ", "original_text": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d1691c76-81d3-42d2-8b4b-13216c91266d", "node_type": "1", "metadata": {"window": "b. Trade related transactions: \nAll the trade transactions including all related parties thereto shall be strictly sanction \nchecked / monitored prior to the execution ensur ing that the appropriate customer due \ndiligence is carried out properly and periodically and to prevent TBML . \n \n c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. ", "original_text": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "bdf08961c8ec71eac50612989ba2a674b2347b63bbc96137fffd868c6aff9bd4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "480985cf-845c-4498-9784-3795b988ffbe", "node_type": "1", "metadata": {"window": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . ", "original_text": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n"}, "hash": "1f98d7ef9cb0c26c35ff9f0b9a5741d186cfb89fdd45c5403c4e61ef7fc2144e", "class_name": "RelatedNodeInfo"}}, "text": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. ", "start_char_idx": 1912, "end_char_idx": 2115, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "480985cf-845c-4498-9784-3795b988ffbe": {"__data__": {"id_": "480985cf-845c-4498-9784-3795b988ffbe", "embedding": null, "metadata": {"window": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . ", "original_text": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "81ec9bf4-9a1f-4c66-ab51-9c83014d037b", "node_type": "1", "metadata": {"window": "c. Correspondent Banking : \nThe Bank shall carry out ECDD while establishing a new correspondent relationship . \n Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. ", "original_text": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "ac6acf763f4f39eedc025fa21ba2d3c555c1aed2df8672105d501c2ffeb5e1c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8c831ae1-636c-4638-a199-e71f19d1a116", "node_type": "1", "metadata": {"window": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. ", "original_text": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. "}, "hash": "326939d0d6a78fa2433f0864c310e10b83852d7626f3ce1cf742077f3167f5fe", "class_name": "RelatedNodeInfo"}}, "text": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n", "start_char_idx": 2115, "end_char_idx": 2285, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8c831ae1-636c-4638-a199-e71f19d1a116": {"__data__": {"id_": "8c831ae1-636c-4638-a199-e71f19d1a116", "embedding": null, "metadata": {"window": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. ", "original_text": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "480985cf-845c-4498-9784-3795b988ffbe", "node_type": "1", "metadata": {"window": "Treasury Department shall review existing correspondent banking relationship at least \non an annual basis. Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . ", "original_text": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "9ae27bf91081f5b8bc5fc437e7d28b1227e30cd2c6581185eafc067b825bc7ff", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b3304b34-b04b-4c3d-bef5-a595f990cd6a", "node_type": "1", "metadata": {"window": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department shall review existing relationship \nat least on an annual basis. "}, "hash": "06eb3711a9186738af09cebcb5b6cbbef72522cd1cb9ef45950fc4c444ef2c50", "class_name": "RelatedNodeInfo"}}, "text": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. ", "start_char_idx": 2285, "end_char_idx": 2434, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b3304b34-b04b-4c3d-bef5-a595f990cd6a": {"__data__": {"id_": "b3304b34-b04b-4c3d-bef5-a595f990cd6a", "embedding": null, "metadata": {"window": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department shall review existing relationship \nat least on an annual basis. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8c831ae1-636c-4638-a199-e71f19d1a116", "node_type": "1", "metadata": {"window": "Treasury Department shall perform CDD for all the existing \nBanks/Financial Institutions with which the Bank has correspondent relationship . If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. ", "original_text": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "1ec582358184bed81eedaa8881024f5f857849129c66c11419a8af1495c7f542", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "35050b70-c5a7-48cf-b9e2-650bd0ae7363", "node_type": "1", "metadata": {"window": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department shall perform CDD for all the \nexisting remittance partners . "}, "hash": "de1a62189a2dcaa8fbefb75d22ac8aec1b0a12153cb1595bf19e910e2a95fbc7", "class_name": "RelatedNodeInfo"}}, "text": "Remittance Department shall review existing relationship \nat least on an annual basis. ", "start_char_idx": 2434, "end_char_idx": 2522, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35050b70-c5a7-48cf-b9e2-650bd0ae7363": {"__data__": {"id_": "35050b70-c5a7-48cf-b9e2-650bd0ae7363", "embedding": null, "metadata": {"window": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department shall perform CDD for all the \nexisting remittance partners . ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b3304b34-b04b-4c3d-bef5-a595f990cd6a", "node_type": "1", "metadata": {"window": "If the \nassessment is not satisfactory to the Bank in terms of AML/CFT measures, it shall be \ncommunicated to AML/ CFT Unit for presentment in AML/CFT Committee for \nappropriate i nstructions/ guidance. Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department shall review existing relationship \nat least on an annual basis. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "0ab28035efc3eab1f49937d0f78b77408b09a199c55174a1dcb4986250290292", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4ed859d-65f6-4952-9136-e2168eaa364b", "node_type": "1", "metadata": {"window": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. "}, "hash": "59eb7acd3fa47c455824fd00384aad96e4fe48bd7c110aa6740a77e7e8eccd88", "class_name": "RelatedNodeInfo"}}, "text": "Remittance Department shall perform CDD for all the \nexisting remittance partners . ", "start_char_idx": 2522, "end_char_idx": 2606, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c4ed859d-65f6-4952-9136-e2168eaa364b": {"__data__": {"id_": "c4ed859d-65f6-4952-9136-e2168eaa364b", "embedding": null, "metadata": {"window": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "35050b70-c5a7-48cf-b9e2-650bd0ae7363", "node_type": "1", "metadata": {"window": "Treasury Department shall collect questionnaire in \nthe Bank\u2019s format or Wolfsberg Questionnaire during onboarding and every year and \nprovide it to AML/ CFT Unit . \n \n d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department shall perform CDD for all the \nexisting remittance partners . ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "28526ac118cf0c9f62bca70f5ee4a78abb2d67025506741d9f475114d83beba3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3ee50f81-fa6a-4edb-847c-6ca85593d6a1", "node_type": "1", "metadata": {"window": "Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n "}, "hash": "fe833565959c851b760533b485639b820fd28d176fb2d01814bb666d01eb0c93", "class_name": "RelatedNodeInfo"}}, "text": "If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. ", "start_char_idx": 2606, "end_char_idx": 2808, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3ee50f81-fa6a-4edb-847c-6ca85593d6a1": {"__data__": {"id_": "3ee50f81-fa6a-4edb-847c-6ca85593d6a1", "embedding": null, "metadata": {"window": "Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f", "node_type": "4", "metadata": {"page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c4ed859d-65f6-4952-9136-e2168eaa364b", "node_type": "1", "metadata": {"window": "d. Remittance agents / other partners: \nThe bank shall carry out ECDD of remittance partners while establishing a new \nrelationship for remittance. Remittance Department shall review existing relationship \nat least on an annual basis. Remittance Department shall perform CDD for all the \nexisting remittance partners . If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "original_text": "If the assessme nt is not satisfactory to the Bank in terms \nof AML/CFT measures, it shall be communicated to AML /CFT Unit for presentment in \nAML/CFT Committee for appropriate instructions/ guidance. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "hash": "0257a5fb9bf94d42110711f37ffe5d53aee71921ff4fa1413607ac0efb21e59a", "class_name": "RelatedNodeInfo"}}, "text": "Remittance Department \nshall collect questionnaire in the Bank\u2019s format or Wolfsberg Questionnaire during \nonboarding and every year and provide it to AML/CFT Unit. \n ", "start_char_idx": 2808, "end_char_idx": 2976, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "280c0e76-41c0-4264-8a9c-9da2abc3c6ec": {"__data__": {"id_": "280c0e76-41c0-4264-8a9c-9da2abc3c6ec", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ca6cb905-f47c-401a-bf43-e3a31a4f55da", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n", "original_text": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n"}, "hash": "5c40f45ff82139e60c0f0752ae5b255745f26a59a87bc17c6f636fe4908dad25", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n", "start_char_idx": 0, "end_char_idx": 238, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ca6cb905-f47c-401a-bf43-e3a31a4f55da": {"__data__": {"id_": "ca6cb905-f47c-401a-bf43-e3a31a4f55da", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n", "original_text": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "280c0e76-41c0-4264-8a9c-9da2abc3c6ec", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "44c633a033b7b07f52b20d8ae9a8ff8138e76cfe92211fd0b89aeed37d904169", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. ", "original_text": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n"}, "hash": "8cad05de58aace3d9ea39ab158363d219de65477f891c5c17d8e68399c57dbea", "class_name": "RelatedNodeInfo"}}, "text": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n", "start_char_idx": 238, "end_char_idx": 425, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef": {"__data__": {"id_": "90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. ", "original_text": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ca6cb905-f47c-401a-bf43-e3a31a4f55da", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n", "original_text": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "ebcd4c2681c6325acee93ca62294187c4eff023b761b1c7499edbba2a17ec790", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d64e91df-5c26-4967-b652-9ae074915b33", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "original_text": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. "}, "hash": "f42b7ccf8440010a5cd0361cc87c9e49167816d674aaae773d5280bd11f7c502", "class_name": "RelatedNodeInfo"}}, "text": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n", "start_char_idx": 425, "end_char_idx": 575, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d64e91df-5c26-4967-b652-9ae074915b33": {"__data__": {"id_": "d64e91df-5c26-4967-b652-9ae074915b33", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "original_text": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. ", "original_text": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "57f9e2bbfb139c0ea695eb7908399eae7b7a8c740df653903cf16c6ab1fbb322", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6b49d114-f4f4-485d-b910-70d6d6180da0", "node_type": "1", "metadata": {"window": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n", "original_text": "The records of such transactions are \nto be maintained. \n"}, "hash": "27658e0ab86d40b61b4d854000dc41cc3a697849c950197ca96a468e22ca3338", "class_name": "RelatedNodeInfo"}}, "text": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. ", "start_char_idx": 575, "end_char_idx": 748, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6b49d114-f4f4-485d-b910-70d6d6180da0": {"__data__": {"id_": "6b49d114-f4f4-485d-b910-70d6d6180da0", "embedding": null, "metadata": {"window": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n", "original_text": "The records of such transactions are \nto be maintained. \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d64e91df-5c26-4967-b652-9ae074915b33", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "original_text": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "3320e932b0e9fe4cb116d0604b294e232a50e12deff99bcf81b904713872081d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44a95309-3132-4d05-80d1-c46a5678b3dc", "node_type": "1", "metadata": {"window": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . ", "original_text": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. "}, "hash": "130aeb8c0258f90d80c4b1d73b2683a30eddb7e4f6e05323eb585f6fda3feba9", "class_name": "RelatedNodeInfo"}}, "text": "The records of such transactions are \nto be maintained. \n", "start_char_idx": 748, "end_char_idx": 806, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "44a95309-3132-4d05-80d1-c46a5678b3dc": {"__data__": {"id_": "44a95309-3132-4d05-80d1-c46a5678b3dc", "embedding": null, "metadata": {"window": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . ", "original_text": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6b49d114-f4f4-485d-b910-70d6d6180da0", "node_type": "1", "metadata": {"window": "f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n", "original_text": "The records of such transactions are \nto be maintained. \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "87032d558930ca6e89e8e2dbb7c5cb884b7fe4f5d2146d0c3f750938197a3746", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1fef1573-f066-4242-a6eb-2564da31ff53", "node_type": "1", "metadata": {"window": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. ", "original_text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n"}, "hash": "802dc6dc785ff1cbef616ef1e299b65a8fc5371001dfee5f2c0dc627caeb61f8", "class_name": "RelatedNodeInfo"}}, "text": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. ", "start_char_idx": 806, "end_char_idx": 1013, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1fef1573-f066-4242-a6eb-2564da31ff53": {"__data__": {"id_": "1fef1573-f066-4242-a6eb-2564da31ff53", "embedding": null, "metadata": {"window": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. ", "original_text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44a95309-3132-4d05-80d1-c46a5678b3dc", "node_type": "1", "metadata": {"window": "g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . ", "original_text": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "2cba5a4a776ca48238eca3669733a2384bf6df4e3e736cf28eae2f9773a089e8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ad7f3325-40a7-4edc-849c-1cf0a687bd08", "node_type": "1", "metadata": {"window": "The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n", "original_text": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n"}, "hash": "a6f4fd26f4f0bae0bf4db76f39953f785134bdeacb58ffe56e765e23705c1bc2", "class_name": "RelatedNodeInfo"}}, "text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "start_char_idx": 1013, "end_char_idx": 1155, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ad7f3325-40a7-4edc-849c-1cf0a687bd08": {"__data__": {"id_": "ad7f3325-40a7-4edc-849c-1cf0a687bd08", "embedding": null, "metadata": {"window": "The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n", "original_text": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1fef1573-f066-4242-a6eb-2564da31ff53", "node_type": "1", "metadata": {"window": "3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. ", "original_text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "ce5c25e2349a0efa0196194b6e6dc82d44e7a0edf3eeba10375206e660042f83", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87a116ae-c397-4230-8e39-fae765e6d4dd", "node_type": "1", "metadata": {"window": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. ", "original_text": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . "}, "hash": "a3ba90b354060d7a8232eab5b4d5dacb704a3c39235b71ef8e5e82984ebe77bd", "class_name": "RelatedNodeInfo"}}, "text": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n", "start_char_idx": 1155, "end_char_idx": 1717, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87a116ae-c397-4230-8e39-fae765e6d4dd": {"__data__": {"id_": "87a116ae-c397-4230-8e39-fae765e6d4dd", "embedding": null, "metadata": {"window": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. ", "original_text": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ad7f3325-40a7-4edc-849c-1cf0a687bd08", "node_type": "1", "metadata": {"window": "The records of such transactions are \nto be maintained. \n 3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n", "original_text": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "9699a6a598f96ab093c310648ca863a620bfeb32177118689b5451ffa0f1d03b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d343ff63-7653-4429-a4f9-d48a41df1b27", "node_type": "1", "metadata": {"window": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n", "original_text": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. "}, "hash": "f44f1635e571310e9966b73e8e93780abdf7ef0b12e985770dbd1e3c9afa37db", "class_name": "RelatedNodeInfo"}}, "text": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . ", "start_char_idx": 1717, "end_char_idx": 1885, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d343ff63-7653-4429-a4f9-d48a41df1b27": {"__data__": {"id_": "d343ff63-7653-4429-a4f9-d48a41df1b27", "embedding": null, "metadata": {"window": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n", "original_text": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "87a116ae-c397-4230-8e39-fae765e6d4dd", "node_type": "1", "metadata": {"window": "3.2.2 Failure to Report \nStaff failing to report any identified unusual and suspic ious transactions, shall be \nsubject to action in accordance with Bank \u2019s policy ALPA or NRB Directive as \nappropriate. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. ", "original_text": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "b9f0c4f8e8077386c877d98ea276d1bf5cbba0a2066e12f7e83558f0fd2a2827", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8390024f-9a10-4c45-8477-8f43e6cc772d", "node_type": "1", "metadata": {"window": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n", "original_text": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n"}, "hash": "7988e31e0768340a7e2a63bc2ed362105c79840c0ba172bbe408ac9f4aca147c", "class_name": "RelatedNodeInfo"}}, "text": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. ", "start_char_idx": 1885, "end_char_idx": 2095, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8390024f-9a10-4c45-8477-8f43e6cc772d": {"__data__": {"id_": "8390024f-9a10-4c45-8477-8f43e6cc772d", "embedding": null, "metadata": {"window": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n", "original_text": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d343ff63-7653-4429-a4f9-d48a41df1b27", "node_type": "1", "metadata": {"window": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n", "original_text": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "b0e13b58a1b8d468669389534b6741b56c7c8ee6ed7b844ddb770c90c640aaca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a172593c-f4f9-4d7b-b0ab-e683c8f21c70", "node_type": "1", "metadata": {"window": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. "}, "hash": "b4ebacb552a719e97ea18c007f3a35cfc693e9667e515001dff67fc022694d51", "class_name": "RelatedNodeInfo"}}, "text": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n", "start_char_idx": 2095, "end_char_idx": 2293, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a172593c-f4f9-4d7b-b0ab-e683c8f21c70": {"__data__": {"id_": "a172593c-f4f9-4d7b-b0ab-e683c8f21c70", "embedding": null, "metadata": {"window": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8390024f-9a10-4c45-8477-8f43e6cc772d", "node_type": "1", "metadata": {"window": "3.2.3 Sanctions and Name Screening \nAny person or entity designated by the United Nations Security Council under \nChapter VII of the Charter of the United Nations, pursuant to Security Council \nresolutions that relate to the prevention and disruption of the financing of \nproliferation of WMD shall be screened and such listed person/entity asset/fund, \nheld singly or in joint ownership, increment in such fund/asset shall be blocked \n(freeze ) and reported as per the Chapter 6 (kha), Section 29 (cha) of Asset (Money) \nLaunde ring Prevention Act 2064. \n \n Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n", "original_text": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "073a17614bc20e3d0ad5b18da82547fdc2674b15b177e11363f5c799c0240e37", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2a580198-957b-4937-9cbc-9c634ba3c008", "node_type": "1", "metadata": {"window": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n"}, "hash": "3b453794ed40ce37ee81f3a33b44e9bf48a65da38f1d258d9c0f7af5118c523e", "class_name": "RelatedNodeInfo"}}, "text": "Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. ", "start_char_idx": 2293, "end_char_idx": 2403, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2a580198-957b-4937-9cbc-9c634ba3c008": {"__data__": {"id_": "2a580198-957b-4937-9cbc-9c634ba3c008", "embedding": null, "metadata": {"window": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a172593c-f4f9-4d7b-b0ab-e683c8f21c70", "node_type": "1", "metadata": {"window": "Bank shall have an appropriate Sanction Screening mechanism (including batch \nscreening) ; the sanction list whenever gets updated shall be reflected in the \nsystem . Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "d3c913b33b90c6da152d852667db028fd951ef31371474b91eec78bf80ab006c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e138bd74-d5de-4d81-9ef5-5c4c15f03829", "node_type": "1", "metadata": {"window": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n"}, "hash": "3f7232e0fae57cd9fdb2bca72965126fa1029cd58f68e316202499e318d1b3af", "class_name": "RelatedNodeInfo"}}, "text": "The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n", "start_char_idx": 2403, "end_char_idx": 2531, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e138bd74-d5de-4d81-9ef5-5c4c15f03829": {"__data__": {"id_": "e138bd74-d5de-4d81-9ef5-5c4c15f03829", "embedding": null, "metadata": {"window": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2a580198-957b-4937-9cbc-9c634ba3c008", "node_type": "1", "metadata": {"window": "Further, Departments/Branches while opening account, reviewing \naccount, and initiating the wire transfer transaction shall perform the sanction check \nagainst customer and parties involved in the transaction. If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "96eb95d71c74a4c23faa3df6baf72e1873627267a04edc4bcb64ab59bc64d723", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7d06288f-71e6-4cb6-a44f-6c4a982fc775", "node_type": "1", "metadata": {"window": "Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) "}, "hash": "f60861d4249ec35aa35b795493defac496ca005728a7148f61d02f7ea94bc8b7", "class_name": "RelatedNodeInfo"}}, "text": "Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n", "start_char_idx": 2531, "end_char_idx": 2903, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7d06288f-71e6-4cb6-a44f-6c4a982fc775": {"__data__": {"id_": "7d06288f-71e6-4cb6-a44f-6c4a982fc775", "embedding": null, "metadata": {"window": "Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5", "node_type": "4", "metadata": {"page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e138bd74-d5de-4d81-9ef5-5c4c15f03829", "node_type": "1", "metadata": {"window": "If any exact/true match is \nfound with the list of United Nations Security Council , the Bank shall blo ck/freeze \nthe accounts/assets of such customer immediately and notify to the regulator10. \n Similarly, any customer under doubt on their information should also be referred to \nthe MLRO as suspicious. The MLRO shall investigate on such issues and derive \nconcl usion within reasonable time and give appropriate instruction. \n \n Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n 10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "original_text": "Further, the Bank shall check various lists directed/required by A LPA Act, \nRegulator and any other competent authorities so as to safe -guard Banks \nreputation and prevent it from being used by money launderers and terrorists, such \nas OFAC, UN, EU, HMT, Australian sanction list, Government of Nepal or any other \nsanctions list as deemed necessary by the Bank. \n \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "hash": "c1d0f567440f86c4ae9bbf2e7ec431e63365842abbccbc537ad3cfc5b4e01744", "class_name": "RelatedNodeInfo"}}, "text": "10 ALPA , 2064 \u2013 Chapter 6KHA , Clause ( 29 CHHA )(5) ", "start_char_idx": 2903, "end_char_idx": 2957, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87cdb9f9-6443-4de6-805e-60fa79892b8c": {"__data__": {"id_": "87cdb9f9-6443-4de6-805e-60fa79892b8c", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b089c73-d94f-4170-9d23-00175b148dff", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. ", "original_text": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n"}, "hash": "626961940b821df4f36fb0f3e456db46367351d20972ff2eecfdd1928f4cd8db", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n", "start_char_idx": 0, "end_char_idx": 304, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b089c73-d94f-4170-9d23-00175b148dff": {"__data__": {"id_": "5b089c73-d94f-4170-9d23-00175b148dff", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. ", "original_text": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "87cdb9f9-6443-4de6-805e-60fa79892b8c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "de766231e5d2f472534f8fbfaa2651a906da18b43f7faaa45ab1cbf35838b009", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2bedf45a-a532-4f34-af89-5e54ebbb3360", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n", "original_text": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. "}, "hash": "39c210b4a33fc8dbf851a484bdce9bfd0e57708e3d6b81a6d3cafcf2cdd5cbcc", "class_name": "RelatedNodeInfo"}}, "text": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n", "start_char_idx": 304, "end_char_idx": 589, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2bedf45a-a532-4f34-af89-5e54ebbb3360": {"__data__": {"id_": "2bedf45a-a532-4f34-af89-5e54ebbb3360", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n", "original_text": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5b089c73-d94f-4170-9d23-00175b148dff", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. ", "original_text": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "dc7e2ed9ba5e642ef0706bc01de70fd8e2e5748ce68ed9191324aaafc87d058c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4a882e3-5baf-45de-a850-58acb66aaf09", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . "}, "hash": "844bff5d7a15c32868c95b4d2d29d1cd7d43574f2f1912eaf995576611ec7d44", "class_name": "RelatedNodeInfo"}}, "text": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. ", "start_char_idx": 589, "end_char_idx": 990, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c4a882e3-5baf-45de-a850-58acb66aaf09": {"__data__": {"id_": "c4a882e3-5baf-45de-a850-58acb66aaf09", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2bedf45a-a532-4f34-af89-5e54ebbb3360", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n", "original_text": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "b24ff48429e1563cc2602d2fe0953863932bc418c559fbf457d1d4b146a0ab90", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "efa844fa-c6b3-49df-bf77-56953f9df462", "node_type": "1", "metadata": {"window": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. "}, "hash": "a9ea4f5f6d067a122740c24b90dac2e6592e52778e61f5ae81288c51d9bda31c", "class_name": "RelatedNodeInfo"}}, "text": "However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . ", "start_char_idx": 990, "end_char_idx": 1117, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "efa844fa-c6b3-49df-bf77-56953f9df462": {"__data__": {"id_": "efa844fa-c6b3-49df-bf77-56953f9df462", "embedding": null, "metadata": {"window": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c4a882e3-5baf-45de-a850-58acb66aaf09", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "a511034d0ce65a6b4234914925c60d3943452618f2665152447bf6810a0c280c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "79183a94-0bfd-4e26-b2ac-01b4844777d6", "node_type": "1", "metadata": {"window": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n"}, "hash": "b6793d74fb3a80547eac077a2d9b7366b9364c3314e68ba9286057e63470443b", "class_name": "RelatedNodeInfo"}}, "text": "The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. ", "start_char_idx": 1117, "end_char_idx": 1212, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "79183a94-0bfd-4e26-b2ac-01b4844777d6": {"__data__": {"id_": "79183a94-0bfd-4e26-b2ac-01b4844777d6", "embedding": null, "metadata": {"window": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "efa844fa-c6b3-49df-bf77-56953f9df462", "node_type": "1", "metadata": {"window": "3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "376b6cf67d92c8672c1f17409e23995a3c63c9548f654bee1eebf167e67ca63a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b90b3dfd-a42f-4419-b97f-f89f1c08ab54", "node_type": "1", "metadata": {"window": "However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n "}, "hash": "1e2e4f18debce453b96d8cca0c4edcb4110d96499ea68ea5afc78d251c567040", "class_name": "RelatedNodeInfo"}}, "text": "Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n", "start_char_idx": 1212, "end_char_idx": 1342, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b90b3dfd-a42f-4419-b97f-f89f1c08ab54": {"__data__": {"id_": "b90b3dfd-a42f-4419-b97f-f89f1c08ab54", "embedding": null, "metadata": {"window": "However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69", "node_type": "4", "metadata": {"page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "79183a94-0bfd-4e26-b2ac-01b4844777d6", "node_type": "1", "metadata": {"window": "Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . The MLRO shall further analyze \nand, if suspicion is established, shall be reported t o FIU. Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n 3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "original_text": "Similarly, TTR shall also \nbe report ed to the FIU by the AML/CFT Unit as per TTR and other re lated \nguidelines issued by FIU. \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "hash": "ac67a01513aa6b04a79587473a54bba3daa5d6173c8d596b09ca81a9b200de2d", "class_name": "RelatedNodeInfo"}}, "text": "3.3 Record Keeping \nThe Bank shall maintain following records accurately and securely records for minimum of \nfive years after the termination of business relationship or from the date of transaction or \nfrom the date of occasional transaction: \na. Documents and records related to identification and verification of customer and \nbeneficial owner, \nb. Documents, records and conclusion of the analysis of customer or beneficial owner \nand transaction, \nc. Documents, details and records related to accounting and business relation of the \nBank \nd. Documents, details and records relating to domestic and foreign transactions, \ne. Documents, details and records of attempted t ransactions, \nf. Other documents, details and records as prescribed by regulators. \n ", "start_char_idx": 1342, "end_char_idx": 2113, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4e3e7b84-0d91-4cf7-b805-b232c8b649ba": {"__data__": {"id_": "4e3e7b84-0d91-4cf7-b805-b232c8b649ba", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "81d50026-2523-41c6-9b77-902190f43f7b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. ", "original_text": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . "}, "hash": "d88ec7a4cff94ae17b4eefaeca3e8945c57b13a9c20670fe298b60b1db98fe92", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. ", "start_char_idx": 0, "end_char_idx": 91, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "81d50026-2523-41c6-9b77-902190f43f7b": {"__data__": {"id_": "81d50026-2523-41c6-9b77-902190f43f7b", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. ", "original_text": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4e3e7b84-0d91-4cf7-b805-b232c8b649ba", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "8f32526d1a72129d8e73c550f89378cae51b0e5a9b9c4f8f51ef0de510332d7a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05dec978-9706-4716-ac11-f33bae44ea0b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. ", "original_text": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. "}, "hash": "99eb12a502183bac70351cc8dfa63d9970140e086bd56c1701d635e0cddf2412", "class_name": "RelatedNodeInfo"}}, "text": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . ", "start_char_idx": 91, "end_char_idx": 270, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05dec978-9706-4716-ac11-f33bae44ea0b": {"__data__": {"id_": "05dec978-9706-4716-ac11-f33bae44ea0b", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. ", "original_text": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "81d50026-2523-41c6-9b77-902190f43f7b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. ", "original_text": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "f8d24a0ac6b5d2a132d606c2b93a75d34a27083208e69ac1d3977f8d4cb53cf4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "713a8421-fb21-41ba-ab14-183e576edcf8", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . ", "original_text": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n"}, "hash": "1859a4fb5d81400405f89e32b21d5c96e0d007b78d549b70d0061837876e3004", "class_name": "RelatedNodeInfo"}}, "text": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. ", "start_char_idx": 270, "end_char_idx": 425, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "713a8421-fb21-41ba-ab14-183e576edcf8": {"__data__": {"id_": "713a8421-fb21-41ba-ab14-183e576edcf8", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . ", "original_text": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05dec978-9706-4716-ac11-f33bae44ea0b", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. ", "original_text": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "a0d7fe3c315da66f649ce70aea6a59f499f144c6f2048bde3f9d672167b1c93c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fe545f00-c6d3-4531-9c21-45cdddb63c6b", "node_type": "1", "metadata": {"window": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . ", "original_text": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. "}, "hash": "8864edb8513f92f07e0a17c778253ef4db1a2bf3da179a9a4f97a160f84a035f", "class_name": "RelatedNodeInfo"}}, "text": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n", "start_char_idx": 425, "end_char_idx": 919, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe545f00-c6d3-4531-9c21-45cdddb63c6b": {"__data__": {"id_": "fe545f00-c6d3-4531-9c21-45cdddb63c6b", "embedding": null, "metadata": {"window": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . ", "original_text": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "713a8421-fb21-41ba-ab14-183e576edcf8", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . ", "original_text": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "00b8ff37c5994e35d93e3b9bd6cb1247726c7af7b0789c272e7d66ba17ffccac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a", "node_type": "1", "metadata": {"window": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n", "original_text": "Feedback of onsite visits shall be submitted to the CCO for review. "}, "hash": "2f5a55f8be4b064abcbc3b5f7c69b57687ee9aca487d17de20a0c8af84516e91", "class_name": "RelatedNodeInfo"}}, "text": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. ", "start_char_idx": 919, "end_char_idx": 1106, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a": {"__data__": {"id_": "fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a", "embedding": null, "metadata": {"window": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n", "original_text": "Feedback of onsite visits shall be submitted to the CCO for review. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fe545f00-c6d3-4531-9c21-45cdddb63c6b", "node_type": "1", "metadata": {"window": "Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . ", "original_text": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "49b0892f056934945aaff9507d51a474952a9ed4824b2c8fd10c4a01ddad8be2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9dead0bc-0207-435a-ae20-ce09bcfe8f58", "node_type": "1", "metadata": {"window": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. ", "original_text": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . "}, "hash": "5bcdb1449349bcc32d6439be3917a13d126b17e8e7f59241c8accbe33c4dfeb2", "class_name": "RelatedNodeInfo"}}, "text": "Feedback of onsite visits shall be submitted to the CCO for review. ", "start_char_idx": 1106, "end_char_idx": 1175, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9dead0bc-0207-435a-ae20-ce09bcfe8f58": {"__data__": {"id_": "9dead0bc-0207-435a-ae20-ce09bcfe8f58", "embedding": null, "metadata": {"window": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. ", "original_text": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a", "node_type": "1", "metadata": {"window": "The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n", "original_text": "Feedback of onsite visits shall be submitted to the CCO for review. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "0a830bf94b1a7d73a7d1ad6cd2f10170e377814c2d2cd4f8ba4feff066a88da3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c7c5137c-0629-4b93-86d0-e670c9f67a27", "node_type": "1", "metadata": {"window": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. ", "original_text": "The training shall be conducted in coordination with HRD . "}, "hash": "d5bef497c9e42f71ab939150279582af0dc5f16d78770c3c965b96891993b271", "class_name": "RelatedNodeInfo"}}, "text": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . ", "start_char_idx": 1175, "end_char_idx": 1287, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c7c5137c-0629-4b93-86d0-e670c9f67a27": {"__data__": {"id_": "c7c5137c-0629-4b93-86d0-e670c9f67a27", "embedding": null, "metadata": {"window": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. ", "original_text": "The training shall be conducted in coordination with HRD . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9dead0bc-0207-435a-ae20-ce09bcfe8f58", "node_type": "1", "metadata": {"window": "Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. ", "original_text": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "96a84d390c70ad522a7948b71a522abf3b8de6685f05f35bb69f3fd33193444b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8757f6b1-ae55-499f-b25f-de05ab6dda08", "node_type": "1", "metadata": {"window": "Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n", "original_text": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n"}, "hash": "524b69e3ac3fe1528da186bebfdbff31242eece21a8283297dfca75311dbf9f4", "class_name": "RelatedNodeInfo"}}, "text": "The training shall be conducted in coordination with HRD . ", "start_char_idx": 1287, "end_char_idx": 1346, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8757f6b1-ae55-499f-b25f-de05ab6dda08": {"__data__": {"id_": "8757f6b1-ae55-499f-b25f-de05ab6dda08", "embedding": null, "metadata": {"window": "Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n", "original_text": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c7c5137c-0629-4b93-86d0-e670c9f67a27", "node_type": "1", "metadata": {"window": "Further, onsite/offsite branch/departments visits shall be conducted by the AML/CFT Unit \nas felt necessary to check/monitor the activities and to create awareness in aspect to \nAML/CFT. Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. ", "original_text": "The training shall be conducted in coordination with HRD . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "b2b10c78b48acd400fa4c09ce7802cdddeb43b03fb46cbc9a1bba6d10f897b2e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7", "node_type": "1", "metadata": {"window": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. ", "original_text": "4.2. "}, "hash": "5c73b5d83e1417b072ed331f92754935f36268837d76ff323baf48fee06c7ee9", "class_name": "RelatedNodeInfo"}}, "text": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n", "start_char_idx": 1346, "end_char_idx": 1479, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7": {"__data__": {"id_": "f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7", "embedding": null, "metadata": {"window": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. ", "original_text": "4.2. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8757f6b1-ae55-499f-b25f-de05ab6dda08", "node_type": "1", "metadata": {"window": "Feedback of onsite visits shall be submitted to the CCO for review. More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n", "original_text": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "5fdde89194f989c4e29c79fdb2972ac45a6e7398e2268617e58391cafe5517fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d1a21348-e334-4cfd-bec4-dd62abb6f17e", "node_type": "1", "metadata": {"window": "The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n", "original_text": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. "}, "hash": "081adb45aedf55f9175cceaa27a925869176e9f5d71577ef60dde229040bd1b4", "class_name": "RelatedNodeInfo"}}, "text": "4.2. ", "start_char_idx": 1479, "end_char_idx": 1484, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d1a21348-e334-4cfd-bec4-dd62abb6f17e": {"__data__": {"id_": "d1a21348-e334-4cfd-bec4-dd62abb6f17e", "embedding": null, "metadata": {"window": "The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n", "original_text": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7", "node_type": "1", "metadata": {"window": "More \nextensive training including foreign training shall also be provided to staff under AML/CFT \nfunctions . The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. ", "original_text": "4.2. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "d09e6e27360177622b8e3e0f80c31f219bf20082d76746e23d3504e4051a47a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e04b7813-1ac3-41bd-9d76-1989880984cd", "node_type": "1", "metadata": {"window": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. ", "original_text": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n"}, "hash": "0a4b3f5a66efe4299675277890df1ba53ec5e0e7a555bf79250f71486f2bb153", "class_name": "RelatedNodeInfo"}}, "text": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. ", "start_char_idx": 1484, "end_char_idx": 1848, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e04b7813-1ac3-41bd-9d76-1989880984cd": {"__data__": {"id_": "e04b7813-1ac3-41bd-9d76-1989880984cd", "embedding": null, "metadata": {"window": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. ", "original_text": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d1a21348-e334-4cfd-bec4-dd62abb6f17e", "node_type": "1", "metadata": {"window": "The training shall be conducted in coordination with HRD . All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n", "original_text": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "0737112ef83730ad8aac8e07487d73fbcb70c1e088eeb2c1560daa6467f6afcb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d438801-b2bf-411f-977d-f82dd9f153ee", "node_type": "1", "metadata": {"window": "4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. ", "original_text": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. "}, "hash": "1a46439b3b5af0cd4de7d86efe49a447e721c2e48a8ccb7257f26de9f557a175", "class_name": "RelatedNodeInfo"}}, "text": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n", "start_char_idx": 1848, "end_char_idx": 1931, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d438801-b2bf-411f-977d-f82dd9f153ee": {"__data__": {"id_": "4d438801-b2bf-411f-977d-f82dd9f153ee", "embedding": null, "metadata": {"window": "4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. ", "original_text": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e04b7813-1ac3-41bd-9d76-1989880984cd", "node_type": "1", "metadata": {"window": "All Branch Managers/ \nHead of Departments shall ensure that all staff members have read and understood The \nPolicy and Guideline. \n 4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. ", "original_text": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "e22d8bd28c049277f91f9c276f73962246678d0a3908c66ff2ffa6a5402da309", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d906a6e3-7a82-4967-b953-b0fdc66a6e47", "node_type": "1", "metadata": {"window": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n", "original_text": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n"}, "hash": "28414940f7e3ff00ae33dbd676004febe35e2033f1cc2e46e68153ddec3fbde1", "class_name": "RelatedNodeInfo"}}, "text": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. ", "start_char_idx": 1931, "end_char_idx": 2084, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d906a6e3-7a82-4967-b953-b0fdc66a6e47": {"__data__": {"id_": "d906a6e3-7a82-4967-b953-b0fdc66a6e47", "embedding": null, "metadata": {"window": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n", "original_text": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d438801-b2bf-411f-977d-f82dd9f153ee", "node_type": "1", "metadata": {"window": "4.2. Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. ", "original_text": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "30d893e981f757373995323cef7c2c3136ad8d75a84a76946ba5e3939ba81528", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9b99d183-9a8b-43db-b957-6e4913e35169", "node_type": "1", "metadata": {"window": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. ", "original_text": "4.3. "}, "hash": "4aa8bb935ad3bb01bf6879808de3f5bc76c348fe9a11037fcd6f25f1c7e00edb", "class_name": "RelatedNodeInfo"}}, "text": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n", "start_char_idx": 2084, "end_char_idx": 2247, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9b99d183-9a8b-43db-b957-6e4913e35169": {"__data__": {"id_": "9b99d183-9a8b-43db-b957-6e4913e35169", "embedding": null, "metadata": {"window": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. ", "original_text": "4.3. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d906a6e3-7a82-4967-b953-b0fdc66a6e47", "node_type": "1", "metadata": {"window": "Confidentiality and Tipping off \nThe Bank shall keep the details of all transaction of STR, TTR, and correspondence record \nto and from the regulatory body on Bank's customers under the investigation as confidential \nand this information shall not be shared with the customer or any irrelevant bank staff, \nunrelated official meetings or anyone outside the Bank. Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n", "original_text": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "4b64dc5da6e65af5d141e6cc2d1e3ed4eb02f3b7f15f019d40e026bf60f0168e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4", "node_type": "1", "metadata": {"window": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "original_text": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. "}, "hash": "f555450f67fca2d8775e111ec794564516079a04ab8905db632ef8bbfd746b35", "class_name": "RelatedNodeInfo"}}, "text": "4.3. ", "start_char_idx": 2247, "end_char_idx": 2252, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4": {"__data__": {"id_": "329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4", "embedding": null, "metadata": {"window": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "original_text": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9b99d183-9a8b-43db-b957-6e4913e35169", "node_type": "1", "metadata": {"window": "Tipping off will be treated as a \ncriminal offe nse and be punished accordingly. \n Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. ", "original_text": "4.3. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "17c5ab16c85d573e0a46ce72a854fdee537ff4d3a42f9fa170d1c365cff78f3f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc7ed399-c799-4a22-a1b6-e1f003dd5610", "node_type": "1", "metadata": {"window": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. ", "original_text": "Any deliberate breach will be viewed as gross misconduct. \n"}, "hash": "65e2c674d52df4694709c076b8abd8c201a771499265644904f93e62df45480a", "class_name": "RelatedNodeInfo"}}, "text": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. ", "start_char_idx": 2252, "end_char_idx": 2391, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc7ed399-c799-4a22-a1b6-e1f003dd5610": {"__data__": {"id_": "bc7ed399-c799-4a22-a1b6-e1f003dd5610", "embedding": null, "metadata": {"window": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. ", "original_text": "Any deliberate breach will be viewed as gross misconduct. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4", "node_type": "1", "metadata": {"window": "Further, any documents, information and transaction details of the customer shall be kept \nconfidential and not leaked/shared to an unauthorized person. Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "original_text": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "28d4b7f05a697ba96255c1bb7a8f8be975dd6350ec81a7c2ec7441c168a43bfa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "67b55cd7-f8e1-469b-ad4b-03fa99f217a6", "node_type": "1", "metadata": {"window": "4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. ", "original_text": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. "}, "hash": "dd96655cfe7ecd86cfe529467419ea384e56a4174f24945d4a7858d44076ec61", "class_name": "RelatedNodeInfo"}}, "text": "Any deliberate breach will be viewed as gross misconduct. \n", "start_char_idx": 2391, "end_char_idx": 2450, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "67b55cd7-f8e1-469b-ad4b-03fa99f217a6": {"__data__": {"id_": "67b55cd7-f8e1-469b-ad4b-03fa99f217a6", "embedding": null, "metadata": {"window": "4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. ", "original_text": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc7ed399-c799-4a22-a1b6-e1f003dd5610", "node_type": "1", "metadata": {"window": "Such personal data is \nconsidered as confidential and is prohibited to be shared to the third party unless otherwise \nstipulated by the applicable Legislation11. \n 4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. ", "original_text": "Any deliberate breach will be viewed as gross misconduct. \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "910978dee79dec751575b489260c17c1d0ede680f0bb711c0c8412a983623ba7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "418bdbeb-1337-428f-9947-64b09fbb11d2", "node_type": "1", "metadata": {"window": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . ", "original_text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n"}, "hash": "b87f5db35e8fc2df4b12470c03418f493bf5600b0ba833c556273272d248e2bf", "class_name": "RelatedNodeInfo"}}, "text": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. ", "start_char_idx": 2450, "end_char_idx": 2564, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "418bdbeb-1337-428f-9947-64b09fbb11d2": {"__data__": {"id_": "418bdbeb-1337-428f-9947-64b09fbb11d2", "embedding": null, "metadata": {"window": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . ", "original_text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "67b55cd7-f8e1-469b-ad4b-03fa99f217a6", "node_type": "1", "metadata": {"window": "4.3. Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. ", "original_text": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "16017dbc6d6fd1f26f1ff7e6d29741dd465409b4f81cd430a2facedd47d45548", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f3fd52ab-6701-4e46-bc50-334d434e5506", "node_type": "1", "metadata": {"window": "Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. ", "original_text": "4.4. "}, "hash": "e2b1b7bef17cb0a4b131d65f1d4e5c05eb35c94b4ef48f8b77421622b49ab221", "class_name": "RelatedNodeInfo"}}, "text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "start_char_idx": 2564, "end_char_idx": 2705, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f3fd52ab-6701-4e46-bc50-334d434e5506": {"__data__": {"id_": "f3fd52ab-6701-4e46-bc50-334d434e5506", "embedding": null, "metadata": {"window": "Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. ", "original_text": "4.4. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "418bdbeb-1337-428f-9947-64b09fbb11d2", "node_type": "1", "metadata": {"window": "Non-Compliance \nFailure from staffs to abide by The Policy set by the Bank to prevent ML and TF will be \ntreated as a disciplinary issue. Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . ", "original_text": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "f40c5a56a2d07a4f84de0c2eb574efa0a68207a9e07f71554cde4b02ba647474", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9b6eccff-e7af-41e1-9e66-b386cde7c1c0", "node_type": "1", "metadata": {"window": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. "}, "hash": "725c5c4dee4f446380f6329068c5c1fd7f5f5842ed5c193aa446ed6750ad4a71", "class_name": "RelatedNodeInfo"}}, "text": "4.4. ", "start_char_idx": 2705, "end_char_idx": 2710, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9b6eccff-e7af-41e1-9e66-b386cde7c1c0": {"__data__": {"id_": "9b6eccff-e7af-41e1-9e66-b386cde7c1c0", "embedding": null, "metadata": {"window": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f3fd52ab-6701-4e46-bc50-334d434e5506", "node_type": "1", "metadata": {"window": "Any deliberate breach will be viewed as gross misconduct. \n Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. ", "original_text": "4.4. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "25a0f90bf4e679e653dede701ac50c384e478fa9450de48ecdc9b98a75eba4b9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "19e66bab-9c92-4328-9ef0-c968ba87545d", "node_type": "1", "metadata": {"window": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . "}, "hash": "585b267218d887c83c42035f32ed1734770b34583782d2bd8646b424870c434d", "class_name": "RelatedNodeInfo"}}, "text": "Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. ", "start_char_idx": 2710, "end_char_idx": 3034, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "19e66bab-9c92-4328-9ef0-c968ba87545d": {"__data__": {"id_": "19e66bab-9c92-4328-9ef0-c968ba87545d", "embedding": null, "metadata": {"window": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9b6eccff-e7af-41e1-9e66-b386cde7c1c0", "node_type": "1", "metadata": {"window": "Further, such actions shall also attract the penalty as per the applicable legislation and \nregulatory provision. MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "056125f791a2b974fedb50b690018838496f51f52be2e2d93de9de3f9e960cdc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ab51dd03-4549-42e0-8ce6-c7bec4f90dea", "node_type": "1", "metadata": {"window": "4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. "}, "hash": "3387cd62416105740b7b7196cd947e4947154a143cf87be46068f8fe6a84b649", "class_name": "RelatedNodeInfo"}}, "text": "Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . ", "start_char_idx": 3034, "end_char_idx": 3171, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ab51dd03-4549-42e0-8ce6-c7bec4f90dea": {"__data__": {"id_": "ab51dd03-4549-42e0-8ce6-c7bec4f90dea", "embedding": null, "metadata": {"window": "4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "19e66bab-9c92-4328-9ef0-c968ba87545d", "node_type": "1", "metadata": {"window": "MLRO shall have the authority to recommend suitable action for such \nstaffs failing to adhere with this policy in consultation with CCO . \n 4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "082fbed411c4e004222c0790103ae180651c07e033c1384215ac3e44b0a2d5c7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a3543077-dc63-462e-bdde-45a63f52b730", "node_type": "1", "metadata": {"window": "Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) "}, "hash": "52c8034c16deff70b6f0a9fff3d67ae2e52553a66a96a52ef672b073365cfa98", "class_name": "RelatedNodeInfo"}}, "text": "Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. ", "start_char_idx": 3171, "end_char_idx": 3279, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a3543077-dc63-462e-bdde-45a63f52b730": {"__data__": {"id_": "a3543077-dc63-462e-bdde-45a63f52b730", "embedding": null, "metadata": {"window": "Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9", "node_type": "4", "metadata": {"page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ab51dd03-4549-42e0-8ce6-c7bec4f90dea", "node_type": "1", "metadata": {"window": "4.4. Not to be Liable for Providing Information \nIn case any loss occurs to a person/customer or to the business of the bank a s a result of \nsubmission of information to the FIU or other investigating authorities by the designated \nstaff in good faith, the Bank shall not take any action to such designated officials .12 \n4.5. Importance of Know Your Employee (KYE) \nThe bank employees will conduct themselves in accordance with the hi ghest ethical \nstandards . Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "original_text": "Staff should not provide advice or other assistance to individuals who are \nindulging in ML/TF activities. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "hash": "1073f27d6742f8686db30b8c3eac613477120f4adfcf1cdc615a9cf9ff2e5568", "class_name": "RelatedNodeInfo"}}, "text": "Any knowledge / information of any staff involved in such \n \n11 ALPA \u2013 Chapter 6, Clause ( 26) \n12 ALPA \u2013 Chapter 8, Clause ( 37) ", "start_char_idx": 3279, "end_char_idx": 3410, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e53f0119-da24-4204-88c5-936fab297322": {"__data__": {"id_": "e53f0119-da24-4204-88c5-936fab297322", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4f2cb7ba-803b-414c-8fad-e09bf904bef8", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. ", "original_text": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . "}, "hash": "d70d1e26718524b8269bef6ecfaf736ae7e67f11cb1c738f95e25457c6eaee7f", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n", "start_char_idx": 0, "end_char_idx": 189, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4f2cb7ba-803b-414c-8fad-e09bf904bef8": {"__data__": {"id_": "4f2cb7ba-803b-414c-8fad-e09bf904bef8", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. ", "original_text": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e53f0119-da24-4204-88c5-936fab297322", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "5ef346c5b111f5000e916192b9264f33f0945eccf592917e831227a702503f48", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bd03b071-a4f2-47be-8f28-d03f6308a455", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n", "original_text": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n"}, "hash": "d075e1e29ebf6d30a64df812bb5f810671644117b455ddb1a55db88b4e84a90c", "class_name": "RelatedNodeInfo"}}, "text": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . ", "start_char_idx": 189, "end_char_idx": 322, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bd03b071-a4f2-47be-8f28-d03f6308a455": {"__data__": {"id_": "bd03b071-a4f2-47be-8f28-d03f6308a455", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n", "original_text": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4f2cb7ba-803b-414c-8fad-e09bf904bef8", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. ", "original_text": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "0e944ca4d47335f4a1c8385114817b4a39ece8f1824387d1bede70a6ffd3db57", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65cd9328-4671-4d36-8c75-e84b8a97fced", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. ", "original_text": "4.6. "}, "hash": "f83bce9a7a31c1e0e70dbfe70390747237f7017f69ef9f9af5b18c0f136cdee9", "class_name": "RelatedNodeInfo"}}, "text": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n", "start_char_idx": 322, "end_char_idx": 512, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65cd9328-4671-4d36-8c75-e84b8a97fced": {"__data__": {"id_": "65cd9328-4671-4d36-8c75-e84b8a97fced", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. ", "original_text": "4.6. ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bd03b071-a4f2-47be-8f28-d03f6308a455", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n", "original_text": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "641b7e9ebc8166af7d8fd692300635c8c6ca6d1d68f1d535202188ec0775d910", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae", "node_type": "1", "metadata": {"window": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. "}, "hash": "ca139cab6c84a7e8aaeff9062245a9653cd0c242d13a1d3c14ea627d49436610", "class_name": "RelatedNodeInfo"}}, "text": "4.6. ", "start_char_idx": 512, "end_char_idx": 517, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae": {"__data__": {"id_": "cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae", "embedding": null, "metadata": {"window": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65cd9328-4671-4d36-8c75-e84b8a97fced", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. ", "original_text": "4.6. ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "df764cc070aec6ef62bebed8b9806ce755ad5fcd10a5e8e17f551b2aa3646dfd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0200d07e-ac4a-4836-a687-85bceb36acac", "node_type": "1", "metadata": {"window": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n"}, "hash": "1abee0bf3866d80b4f0612c4b6301ffb550e54dc056dfb9405d3e1688a109302", "class_name": "RelatedNodeInfo"}}, "text": "Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. ", "start_char_idx": 517, "end_char_idx": 743, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0200d07e-ac4a-4836-a687-85bceb36acac": {"__data__": {"id_": "0200d07e-ac4a-4836-a687-85bceb36acac", "embedding": null, "metadata": {"window": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae", "node_type": "1", "metadata": {"window": "Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "3845ce808065ded1c03174f8beed88ef38c38784c36d362e659176463c81c5b8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "216c6559-336b-4dad-9799-4b97091755cc", "node_type": "1", "metadata": {"window": "4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "13 Unified Directive 2078, directive no. "}, "hash": "5536821d0af7d88078c6e6a09b8eff43621299976558b25974346e8c2204a0d2", "class_name": "RelatedNodeInfo"}}, "text": "Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n", "start_char_idx": 743, "end_char_idx": 818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "216c6559-336b-4dad-9799-4b97091755cc": {"__data__": {"id_": "216c6559-336b-4dad-9799-4b97091755cc", "embedding": null, "metadata": {"window": "4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "13 Unified Directive 2078, directive no. ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0200d07e-ac4a-4836-a687-85bceb36acac", "node_type": "1", "metadata": {"window": "It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "5dfca20b68183342611cfe9069787660c0ede5c2de44b128fbb26ac543b56cdd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "22c2f1c7-5c1e-488c-8bac-d5aa917d73ad", "node_type": "1", "metadata": {"window": "Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) "}, "hash": "d86042c19649c3b15b4a42bc0accb9905b01d3ee5cf9fb12703e9ec938f445c0", "class_name": "RelatedNodeInfo"}}, "text": "13 Unified Directive 2078, directive no. ", "start_char_idx": 818, "end_char_idx": 859, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "22c2f1c7-5c1e-488c-8bac-d5aa917d73ad": {"__data__": {"id_": "22c2f1c7-5c1e-488c-8bac-d5aa917d73ad", "embedding": null, "metadata": {"window": "Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460", "node_type": "4", "metadata": {"page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "216c6559-336b-4dad-9799-4b97091755cc", "node_type": "1", "metadata": {"window": "4.6. Code -of-conduct \nAs per the Personnel Policy Guidelines of the bank, HRD shall obtain signed and accepted \nCode of Conduct from every staff ensuring that the staffs have understood and aware of \ncode of conduct of the Bank. Also, a code for conduct for the BOD is also to be obtained13. \n \n \n \n \n \n 13 Unified Directive 2078, directive no. 19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "original_text": "13 Unified Directive 2078, directive no. ", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "hash": "efcdae973ba8907037a88970407c1e90b1498aa58ff83d9415b67c050376cf98", "class_name": "RelatedNodeInfo"}}, "text": "19/078, Clause ( 18) (10) added through NRB circular 4/079/80 dated 2 -\nDec-22 (2079/8/16 BS) ", "start_char_idx": 859, "end_char_idx": 954, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5cb2ca77-8c68-4eca-ba7b-09fd6f940847": {"__data__": {"id_": "5cb2ca77-8c68-4eca-ba7b-09fd6f940847", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) ", "original_text": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. "}, "hash": "e47d04d4dd8f7f941e205a7d1cc5f2f6385bebfa8ff9364a9f6c019eb50d54f4", "class_name": "RelatedNodeInfo"}}, "text": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. ", "start_char_idx": 0, "end_char_idx": 84, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a": {"__data__": {"id_": "c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) ", "original_text": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5cb2ca77-8c68-4eca-ba7b-09fd6f940847", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "f37706b970bedeee6b4225daea7500c8fca15fc4a41053ba3971a4f9e6872240", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a5d51abe-ea19-4749-aac1-0b15fde47d8c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. ", "original_text": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n"}, "hash": "5e3c98d33a4aca6cdd6346f3e8d12c0e2a3175b95f4fe04f0d643f315d6e6c28", "class_name": "RelatedNodeInfo"}}, "text": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. ", "start_char_idx": 84, "end_char_idx": 166, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a5d51abe-ea19-4749-aac1-0b15fde47d8c": {"__data__": {"id_": "a5d51abe-ea19-4749-aac1-0b15fde47d8c", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. ", "original_text": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) ", "original_text": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "0f4e5132065c998224653a1d34bc57cae145933ac2b2dd5fba6bbdb1ecc01f0b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8035ab1f-a41e-4fe9-bf09-ec5ca904acef", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n", "original_text": "5.2. "}, "hash": "5451613769bf2af51f33cbeca0c36eb9d59ad3aef508298de20ecfd675cd1489", "class_name": "RelatedNodeInfo"}}, "text": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n", "start_char_idx": 166, "end_char_idx": 371, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8035ab1f-a41e-4fe9-bf09-ec5ca904acef": {"__data__": {"id_": "8035ab1f-a41e-4fe9-bf09-ec5ca904acef", "embedding": null, "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n", "original_text": "5.2. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a5d51abe-ea19-4749-aac1-0b15fde47d8c", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. ", "original_text": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "efc708c64b315bcbf4c9bdf59bfe550ff1fd622271fea106caa830466c23be9f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a23ebbe3-906f-4680-b1f3-a8fb40303f61", "node_type": "1", "metadata": {"window": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. ", "original_text": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) "}, "hash": "b4fb7c9cbf299fc0190c0c3d5338720527e13a1a99834cf44f5148c7623f671c", "class_name": "RelatedNodeInfo"}}, "text": "5.2. ", "start_char_idx": 371, "end_char_idx": 376, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a23ebbe3-906f-4680-b1f3-a8fb40303f61": {"__data__": {"id_": "a23ebbe3-906f-4680-b1f3-a8fb40303f61", "embedding": null, "metadata": {"window": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. ", "original_text": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8035ab1f-a41e-4fe9-bf09-ec5ca904acef", "node_type": "1", "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n", "original_text": "5.2. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "df556fe1797ff33507c1547629aacd380d6bf4bae61cbb066ff7bee560450556", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "27461456-384c-47b7-b8c8-98d570467a6d", "node_type": "1", "metadata": {"window": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. ", "original_text": "shall be developed in compliance to this Policy. "}, "hash": "9517fafeef489ed7185e907813d34b49d07f2d67565141027eb692f2849c0e29", "class_name": "RelatedNodeInfo"}}, "text": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) ", "start_char_idx": 376, "end_char_idx": 480, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "27461456-384c-47b7-b8c8-98d570467a6d": {"__data__": {"id_": "27461456-384c-47b7-b8c8-98d570467a6d", "embedding": null, "metadata": {"window": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. ", "original_text": "shall be developed in compliance to this Policy. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a23ebbe3-906f-4680-b1f3-a8fb40303f61", "node_type": "1", "metadata": {"window": "AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. ", "original_text": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "ff2acf7fc74dfe85dcb9771f86b4e1250a372234e1e530fed053afa71b4827c8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aee00e79-c56b-4bd1-8a78-2057cc30c0e8", "node_type": "1", "metadata": {"window": "5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. ", "original_text": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n"}, "hash": "8acd790740280d77e4568fba508a6f16ef62b420748ecd1eccf7200446df1bb5", "class_name": "RelatedNodeInfo"}}, "text": "shall be developed in compliance to this Policy. ", "start_char_idx": 480, "end_char_idx": 529, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aee00e79-c56b-4bd1-8a78-2057cc30c0e8": {"__data__": {"id_": "aee00e79-c56b-4bd1-8a78-2057cc30c0e8", "embedding": null, "metadata": {"window": "5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. ", "original_text": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "27461456-384c-47b7-b8c8-98d570467a6d", "node_type": "1", "metadata": {"window": "The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. ", "original_text": "shall be developed in compliance to this Policy. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "012e647de435bb3f13844aee3aebc169fdd956caf396095c32bc44ad557e1b50", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a", "node_type": "1", "metadata": {"window": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. ", "original_text": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. "}, "hash": "93fa5ff0bf0f1b45fdfba87f704b86149ee83683a7a5d427f2eeaa4ddb01888e", "class_name": "RelatedNodeInfo"}}, "text": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n", "start_char_idx": 529, "end_char_idx": 711, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a": {"__data__": {"id_": "724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a", "embedding": null, "metadata": {"window": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. ", "original_text": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "aee00e79-c56b-4bd1-8a78-2057cc30c0e8", "node_type": "1", "metadata": {"window": "5.2. Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. ", "original_text": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7fd8e5569856b39e7d6eb7230c6256310d67a5ea1d1ebd115ade27f81046129a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "892abaa6-8499-4327-bb96-06284025b901", "node_type": "1", "metadata": {"window": "shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. ", "original_text": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. "}, "hash": "f3e921e4e93f2ec31c402bb5f02c1e30c3ff015d25577cfa6254e663701693fa", "class_name": "RelatedNodeInfo"}}, "text": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. ", "start_char_idx": 711, "end_char_idx": 895, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "892abaa6-8499-4327-bb96-06284025b901": {"__data__": {"id_": "892abaa6-8499-4327-bb96-06284025b901", "embedding": null, "metadata": {"window": "shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. ", "original_text": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a", "node_type": "1", "metadata": {"window": "Others \nAll other internal documents of the Bank (policies, manuals, process notes, guidelines, \netc.) shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. ", "original_text": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "3a0b8b7aaee2895f9384b00f022727b352e8ffcb31eb694184be11affd78ab21", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "04b9e023-54a9-48bd-b155-eb593f297bdd", "node_type": "1", "metadata": {"window": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n", "original_text": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. "}, "hash": "4f149d5ad8ee6afa874428c74f32ae5208b2abfe8df35883e761a6045a29fff5", "class_name": "RelatedNodeInfo"}}, "text": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. ", "start_char_idx": 895, "end_char_idx": 1038, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "04b9e023-54a9-48bd-b155-eb593f297bdd": {"__data__": {"id_": "04b9e023-54a9-48bd-b155-eb593f297bdd", "embedding": null, "metadata": {"window": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n", "original_text": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "892abaa6-8499-4327-bb96-06284025b901", "node_type": "1", "metadata": {"window": "shall be developed in compliance to this Policy. Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. ", "original_text": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "df30e3153197a6884286473b00a7ba8288beab4dd5e786e192774f947dd29c0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "20cb6038-10f9-4d16-b107-1cd06e1e0e6a", "node_type": "1", "metadata": {"window": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. ", "original_text": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. "}, "hash": "3f318956ca65d3e618e642e5d0eecc2df2a8be3ba0e00e624e63466302d49846", "class_name": "RelatedNodeInfo"}}, "text": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. ", "start_char_idx": 1038, "end_char_idx": 1119, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "20cb6038-10f9-4d16-b107-1cd06e1e0e6a": {"__data__": {"id_": "20cb6038-10f9-4d16-b107-1cd06e1e0e6a", "embedding": null, "metadata": {"window": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. ", "original_text": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "04b9e023-54a9-48bd-b155-eb593f297bdd", "node_type": "1", "metadata": {"window": "Likewise, all the process notes and \nproduct papers should mention about the monitoring and control mechanism of ML/TF as \nper this Policy and AML/CFT Guidelines where applicable. \n While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n", "original_text": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "2b0ec05aee5469185e1fd6e0ca5ccb786124bce1368f9b6acc3f787556b67127", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "33b4d705-5b0e-44ba-9e0d-a823990bf169", "node_type": "1", "metadata": {"window": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc.", "original_text": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. "}, "hash": "96acd7972930cd9008f580f0f6a295ba90b71b9b7e36a4936f844c1349002d98", "class_name": "RelatedNodeInfo"}}, "text": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. ", "start_char_idx": 1119, "end_char_idx": 1304, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "33b4d705-5b0e-44ba-9e0d-a823990bf169": {"__data__": {"id_": "33b4d705-5b0e-44ba-9e0d-a823990bf169", "embedding": null, "metadata": {"window": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc.", "original_text": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "20cb6038-10f9-4d16-b107-1cd06e1e0e6a", "node_type": "1", "metadata": {"window": "While introducing new products and services or entering affiliation with any third party, the \nBank shall confirm that it is in accordance with this Policy and NRB Directives and Act. Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. ", "original_text": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "9ddd767af19477adf8a031f6827e2ae4495827219c06425dc3a8c2a0ca6f481b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c887158b-3381-4c4b-acfc-233bf64aebaf", "node_type": "1", "metadata": {"window": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. ", "original_text": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n"}, "hash": "fa28eea10d91dbd670682b58609a4ffdc24dbf272c582c9d18fed2771a4bd4f9", "class_name": "RelatedNodeInfo"}}, "text": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. ", "start_char_idx": 1304, "end_char_idx": 1454, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c887158b-3381-4c4b-acfc-233bf64aebaf": {"__data__": {"id_": "c887158b-3381-4c4b-acfc-233bf64aebaf", "embedding": null, "metadata": {"window": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. ", "original_text": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "33b4d705-5b0e-44ba-9e0d-a823990bf169", "node_type": "1", "metadata": {"window": "Any \naffiliates of the Bank shall have policies and practices which preven t the organization from \nmoney laundering and terrorist activities. The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc.", "original_text": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "80ee31de8b8e329accfd865f893be3da3040a98a3521700a6dca797a872b96aa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "180e4ce0-e01b-4b8f-bfaf-14189430a48f", "node_type": "1", "metadata": {"window": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. ", "original_text": "5.3. "}, "hash": "5775b052e80f99be54ef6587538762c1732bbd8e0e7fe1d08984eb85c17f2277", "class_name": "RelatedNodeInfo"}}, "text": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n", "start_char_idx": 1454, "end_char_idx": 1574, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "180e4ce0-e01b-4b8f-bfaf-14189430a48f": {"__data__": {"id_": "180e4ce0-e01b-4b8f-bfaf-14189430a48f", "embedding": null, "metadata": {"window": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. ", "original_text": "5.3. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c887158b-3381-4c4b-acfc-233bf64aebaf", "node_type": "1", "metadata": {"window": "The Bank may review AML/CFT related \ndocuments and practices of such affiliates. The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. ", "original_text": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "b2c80f86e741f5aaa3c64b0b616bdc8849fbbf3681e72dd9d7d19dda0417c2b1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cae614fa-03f8-4886-b62d-3b8e05d62d75", "node_type": "1", "metadata": {"window": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n", "original_text": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc."}, "hash": "04138e82241f22c037530cb7bdebbeff05b6c2850bb71ac67250f1aeab9e61fb", "class_name": "RelatedNodeInfo"}}, "text": "5.3. ", "start_char_idx": 1574, "end_char_idx": 1580, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cae614fa-03f8-4886-b62d-3b8e05d62d75": {"__data__": {"id_": "cae614fa-03f8-4886-b62d-3b8e05d62d75", "embedding": null, "metadata": {"window": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n", "original_text": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc.", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "180e4ce0-e01b-4b8f-bfaf-14189430a48f", "node_type": "1", "metadata": {"window": "The subsidiary companies of the Bank shall \nprepare their own AML/CFT Policy as directed by their respective R egulators and shall \nalso be in line/spirit with the Policy of the Bank. The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. ", "original_text": "5.3. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "564473797358b6e98f97225f52f0c6b14358a30e459f4429415d24f07b21b50c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "39cc9373-6da8-4f5a-95c4-4e81f0f83b35", "node_type": "1", "metadata": {"window": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n", "original_text": "), and internal and external dynamics in \nwhich Bank operates. "}, "hash": "e53a3980b36171770228f00db7517aaa1da583c208ae8796329a7a85f9fb2aa9", "class_name": "RelatedNodeInfo"}}, "text": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc.", "start_char_idx": 1580, "end_char_idx": 1825, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "39cc9373-6da8-4f5a-95c4-4e81f0f83b35": {"__data__": {"id_": "39cc9373-6da8-4f5a-95c4-4e81f0f83b35", "embedding": null, "metadata": {"window": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n", "original_text": "), and internal and external dynamics in \nwhich Bank operates. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cae614fa-03f8-4886-b62d-3b8e05d62d75", "node_type": "1", "metadata": {"window": "The Bank representative office established \nabroad shall follow the A LPA and Provisions of their jurisdictions as well as The Policy and \nGuideline. Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n", "original_text": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc.", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "57baa1ba9f98a8dfc99ad8fa7730398757622a403adb9d69345d6479839ead10", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "50f9afff-32fd-4345-a9e5-fb54e7ec2c63", "node_type": "1", "metadata": {"window": "5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. ", "original_text": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. "}, "hash": "cc1eec8ac6fc6391ac1b7acc95dcbccf2d93beee0ffeabbaf5a73f5d266594bb", "class_name": "RelatedNodeInfo"}}, "text": "), and internal and external dynamics in \nwhich Bank operates. ", "start_char_idx": 1825, "end_char_idx": 1888, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "50f9afff-32fd-4345-a9e5-fb54e7ec2c63": {"__data__": {"id_": "50f9afff-32fd-4345-a9e5-fb54e7ec2c63", "embedding": null, "metadata": {"window": "5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. ", "original_text": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "39cc9373-6da8-4f5a-95c4-4e81f0f83b35", "node_type": "1", "metadata": {"window": "Where there is a conflict or confusio n between such, the more stringent policies, \nguidelines and rules shall apply. \n 5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n", "original_text": "), and internal and external dynamics in \nwhich Bank operates. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "8e3355355baff555e513426d914a9000b73def3295a00bd37d3f2b306fddc16c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1", "node_type": "1", "metadata": {"window": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . ", "original_text": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n"}, "hash": "a866b986067b053452fb644454c54400b651eaface96e52482a44351ba8ac8ee", "class_name": "RelatedNodeInfo"}}, "text": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. ", "start_char_idx": 1888, "end_char_idx": 2072, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1": {"__data__": {"id_": "f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1", "embedding": null, "metadata": {"window": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . ", "original_text": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "50f9afff-32fd-4345-a9e5-fb54e7ec2c63", "node_type": "1", "metadata": {"window": "5.3. Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. ", "original_text": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "28a72341e8770a6f026a95a5a2079c5d4808426ef75cf76208f58569a92a59c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7160204a-9bae-4def-be19-1aaa04593075", "node_type": "1", "metadata": {"window": "), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n", "original_text": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n"}, "hash": "db53fb32a203fe3e40eedcda1e2ac1c1fd8794edca3e41a1cf8db80133d85eee", "class_name": "RelatedNodeInfo"}}, "text": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n", "start_char_idx": 2072, "end_char_idx": 2155, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7160204a-9bae-4def-be19-1aaa04593075": {"__data__": {"id_": "7160204a-9bae-4def-be19-1aaa04593075", "embedding": null, "metadata": {"window": "), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n", "original_text": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1", "node_type": "1", "metadata": {"window": "Maintenance and Update \nThe review and update of this Policy shall be an ongoing process to ensure continuous \nalignment with the Bank\u2019s strategy, Risk assessment reports as per NRB Directives (such \nas Annual ML/TF Risk Assessment Report, etc. ), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . ", "original_text": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "da7f25f0522425390ccf3a0fe630142f359cb11210de1ab84c21b4d3475d5a2a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c030132a-f9b1-4ad7-a328-18b6530adb71", "node_type": "1", "metadata": {"window": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. ", "original_text": "5.4. "}, "hash": "66d14cd20f2e3cd841c8195a28c397edacffaf116cae1974a5f665162d141d56", "class_name": "RelatedNodeInfo"}}, "text": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n", "start_char_idx": 2155, "end_char_idx": 2253, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c030132a-f9b1-4ad7-a328-18b6530adb71": {"__data__": {"id_": "c030132a-f9b1-4ad7-a328-18b6530adb71", "embedding": null, "metadata": {"window": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. ", "original_text": "5.4. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7160204a-9bae-4def-be19-1aaa04593075", "node_type": "1", "metadata": {"window": "), and internal and external dynamics in \nwhich Bank operates. Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n", "original_text": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "58b311db4267c193f6fa55b9203f8116944bb205e003bc9be29afa0bd0d789d5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "04023cc9-dc58-42e3-b4e5-535bcabfb7a5", "node_type": "1", "metadata": {"window": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . "}, "hash": "531cc7b64a0c31e8322af540cb3cc550fda479ef2fd4a54dea75ad04a8451985", "class_name": "RelatedNodeInfo"}}, "text": "5.4. ", "start_char_idx": 2253, "end_char_idx": 2258, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "04023cc9-dc58-42e3-b4e5-535bcabfb7a5": {"__data__": {"id_": "04023cc9-dc58-42e3-b4e5-535bcabfb7a5", "embedding": null, "metadata": {"window": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c030132a-f9b1-4ad7-a328-18b6530adb71", "node_type": "1", "metadata": {"window": "Such factors shall include the developments, changes, and trends \nwhether required by law or by generally accepted risk management or business practices \nwithin the financial sector. Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. ", "original_text": "5.4. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "f4f3b91cec7c46862fa6fd29de17303c0db5479c4fe64bde0a86b6d9d170408f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "968e9f84-ce3e-43c7-9e73-52ae72a4f8bb", "node_type": "1", "metadata": {"window": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n"}, "hash": "84c3767dc19868d8274cb77d2e8a4ddea07892134a281db5489299652114b475", "class_name": "RelatedNodeInfo"}}, "text": "Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . ", "start_char_idx": 2258, "end_char_idx": 2356, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "968e9f84-ce3e-43c7-9e73-52ae72a4f8bb": {"__data__": {"id_": "968e9f84-ce3e-43c7-9e73-52ae72a4f8bb", "embedding": null, "metadata": {"window": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "04023cc9-dc58-42e3-b4e5-535bcabfb7a5", "node_type": "1", "metadata": {"window": "Review and amendments of The Policy shall be as sessed and \napproved by the BOD. \n This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "715b5dfae804c34d4d3b4b900fd8ce6e111af8424e09c6a0e50c27932514d68d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885", "node_type": "1", "metadata": {"window": "5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "5.5. "}, "hash": "494571b15b7a12862889d8b873b5a3b75b4913de870c1e0e603ac6a9de328ad4", "class_name": "RelatedNodeInfo"}}, "text": "All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n", "start_char_idx": 2356, "end_char_idx": 2479, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885": {"__data__": {"id_": "1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885", "embedding": null, "metadata": {"window": "5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "5.5. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "968e9f84-ce3e-43c7-9e73-52ae72a4f8bb", "node_type": "1", "metadata": {"window": "This Policy shall be subject to review at least once a year or whenever circumstances \njustify. \n 5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "a8488dff08195275bac7c51bf0437b35f1f5c944c810140dc43fb59101684d2b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2d5ff229-5b86-4a90-b589-649b7320c30a", "node_type": "1", "metadata": {"window": "Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n "}, "hash": "66506fbce6ab981a3bc15a0a9b2cf7d04b8fdcaaac262b3c3a519eb27f789ab8", "class_name": "RelatedNodeInfo"}}, "text": "5.5. ", "start_char_idx": 2479, "end_char_idx": 2484, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2d5ff229-5b86-4a90-b589-649b7320c30a": {"__data__": {"id_": "2d5ff229-5b86-4a90-b589-649b7320c30a", "embedding": null, "metadata": {"window": "Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9917c9ce-5007-41c0-a3da-0c22199145ca", "node_type": "4", "metadata": {"page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885", "node_type": "1", "metadata": {"window": "5.4. Repeal and Savings \nThe existing p olicy of the bank shall be repeal ed upon approval from BOD . All actions \ntaken and functions performed shall be considered to have been taken or performed \npursuant to The P olicy. \n 5.5. Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "original_text": "5.5. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "hash": "7eabbe1ac34f2d8fc463cf59421f5f7e237867d33dbd16fbb8cfda9dd5fc25dd", "class_name": "RelatedNodeInfo"}}, "text": "Effective Date \nThe Policy shall come into effect following approval from the BOD with immediate effect . \n \n \n ", "start_char_idx": 2484, "end_char_idx": 2599, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "961c0993-1414-4237-9fcd-5e18abbc1f27": {"__data__": {"id_": "961c0993-1414-4237-9fcd-5e18abbc1f27", "embedding": null, "metadata": {"window": " \n \n \nMuktinath Temple (Chumig Gyatsa) \nDistrict : Mustang Country : Nepal \nAltitude : 3710 meter Distance : 406 km from Kathmandu \nNearest Airport : Jomsom 200 km from Pokhara \nName in Hindu : Mukti K shetra Name in B uddhist : Chumig Gyatsa \nDivya Desam (premium \ntemples) 106th Shakti Peethams 51st \nGod Worshipped Vishnu \nMuktinath Temple \n\"The holiest of holy Vishnu temple in Mustang \nDistrict of Nepal\" ", "original_text": " \n \n \nMuktinath Temple (Chumig Gyatsa) \nDistrict : Mustang Country : Nepal \nAltitude : 3710 meter Distance : 406 km from Kathmandu \nNearest Airport : Jomsom 200 km from Pokhara \nName in Hindu : Mukti K shetra Name in B uddhist : Chumig Gyatsa \nDivya Desam (premium \ntemples) 106th Shakti Peethams 51st \nGod Worshipped Vishnu \nMuktinath Temple \n\"The holiest of holy Vishnu temple in Mustang \nDistrict of Nepal\" ", "page_label": "1", "file_name": "muktinath.pdf", "doc_id": "a2935351-6da3-4318-a839-4ee3ea5fc91d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a2935351-6da3-4318-a839-4ee3ea5fc91d", "node_type": "4", "metadata": {"page_label": "1", "file_name": "muktinath.pdf", "doc_id": "a2935351-6da3-4318-a839-4ee3ea5fc91d"}, "hash": "beeeb201d4c460874c61cf9bb322ce5033e518cb809f30eb8ea7ba3a1ecdeff6", "class_name": "RelatedNodeInfo"}}, "text": " \n \n \nMuktinath Temple (Chumig Gyatsa) \nDistrict : Mustang Country : Nepal \nAltitude : 3710 meter Distance : 406 km from Kathmandu \nNearest Airport : Jomsom 200 km from Pokhara \nName in Hindu : Mukti K shetra Name in B uddhist : Chumig Gyatsa \nDivya Desam (premium \ntemples) 106th Shakti Peethams 51st \nGod Worshipped Vishnu \nMuktinath Temple \n\"The holiest of holy Vishnu temple in Mustang \nDistrict of Nepal\" ", "start_char_idx": 0, "end_char_idx": 430, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5020b73f-8873-4bc9-a860-984ff814f4ea": {"__data__": {"id_": "5020b73f-8873-4bc9-a860-984ff814f4ea", "embedding": null, "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). ", "original_text": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8e2e6e89-ded8-4515-9f9c-53a543c290d3", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n", "original_text": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. "}, "hash": "8464e432a7750853350995247e0bb45edc369d35c871ac8bd6b2be80a9f61899", "class_name": "RelatedNodeInfo"}}, "text": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. ", "start_char_idx": 0, "end_char_idx": 154, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e2e6e89-ded8-4515-9f9c-53a543c290d3": {"__data__": {"id_": "8e2e6e89-ded8-4515-9f9c-53a543c290d3", "embedding": null, "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n", "original_text": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5020b73f-8873-4bc9-a860-984ff814f4ea", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). ", "original_text": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "171bccf26b353dcd675eb0c1d3948607f86cf0cc3972bc5bc9977d32992cf90d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. ", "original_text": "Therefore he is worshipped as \nMuktinath (Lit. "}, "hash": "ecb68331c9a7eacecc4e17d3ce75de230a33a4957d1c0b4ee300d5b8dc084ad2", "class_name": "RelatedNodeInfo"}}, "text": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. ", "start_char_idx": 154, "end_char_idx": 249, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d": {"__data__": {"id_": "a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d", "embedding": null, "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. ", "original_text": "Therefore he is worshipped as \nMuktinath (Lit. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8e2e6e89-ded8-4515-9f9c-53a543c290d3", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n", "original_text": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "6bc4ffbfc3180d48abf2d582e29d5434fc34e9104db783f7f567aaf94eec65d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e5f227b2-6b9f-4596-bd0e-9efb449a11f1", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. ", "original_text": "the lord of salvation). "}, "hash": "2672959e63a36a0922d534c5056f35905d1f8f96cdbc0710dccab6de733a534f", "class_name": "RelatedNodeInfo"}}, "text": "Therefore he is worshipped as \nMuktinath (Lit. ", "start_char_idx": 249, "end_char_idx": 296, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e5f227b2-6b9f-4596-bd0e-9efb449a11f1": {"__data__": {"id_": "e5f227b2-6b9f-4596-bd0e-9efb449a11f1", "embedding": null, "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. ", "original_text": "the lord of salvation). ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. ", "original_text": "Therefore he is worshipped as \nMuktinath (Lit. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "4931308f32678b311ee8ab917a4f022f70fb5ac4b7efb85ed5c2e973c89a40ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8648d275-f562-4f15-8b2f-98dbc599a3eb", "node_type": "1", "metadata": {"window": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. ", "original_text": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n"}, "hash": "e381d3caf40910e5eda4983c61f0904c74644e06655a93cd6e8dd1e9a77b10e3", "class_name": "RelatedNodeInfo"}}, "text": "the lord of salvation). ", "start_char_idx": 296, "end_char_idx": 320, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8648d275-f562-4f15-8b2f-98dbc599a3eb": {"__data__": {"id_": "8648d275-f562-4f15-8b2f-98dbc599a3eb", "embedding": null, "metadata": {"window": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. ", "original_text": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e5f227b2-6b9f-4596-bd0e-9efb449a11f1", "node_type": "1", "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. ", "original_text": "the lord of salvation). ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "32e0b95cc8b7365a5feb36772e44f0d04450d852250a8eef1b0ccade6d2708cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9cc69d8d-10c3-4775-a835-b59bc19029c3", "node_type": "1", "metadata": {"window": "Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. ", "original_text": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. "}, "hash": "0727ad75f1c14c4a30c1cc43b3cb988e7a86fe50690a2e2d81a5c58e98e96c69", "class_name": "RelatedNodeInfo"}}, "text": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n", "start_char_idx": 320, "end_char_idx": 517, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9cc69d8d-10c3-4775-a835-b59bc19029c3": {"__data__": {"id_": "9cc69d8d-10c3-4775-a835-b59bc19029c3", "embedding": null, "metadata": {"window": "Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. ", "original_text": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8648d275-f562-4f15-8b2f-98dbc599a3eb", "node_type": "1", "metadata": {"window": "Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. ", "original_text": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "3f7d92ed1318202fbf9fef807915e80e5bce455b38ca078f5859b9d012f2e3ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2eee2bd9-d3c6-42b6-a5ba-161c3140627e", "node_type": "1", "metadata": {"window": "the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. ", "original_text": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. "}, "hash": "30c45dbdb1707bfc4e01bb4422d34e579763429eea90853823823ee358bfe17a", "class_name": "RelatedNodeInfo"}}, "text": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. ", "start_char_idx": 517, "end_char_idx": 591, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2eee2bd9-d3c6-42b6-a5ba-161c3140627e": {"__data__": {"id_": "2eee2bd9-d3c6-42b6-a5ba-161c3140627e", "embedding": null, "metadata": {"window": "the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. ", "original_text": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9cc69d8d-10c3-4775-a835-b59bc19029c3", "node_type": "1", "metadata": {"window": "Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. ", "original_text": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "b8ca607de6618148d9f7e4d81d499b8ecfe1fa43fafbe70b279359f5677b69d7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c676c70a-da45-43e0-bd7b-5cdd29aaddac", "node_type": "1", "metadata": {"window": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). ", "original_text": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. "}, "hash": "422e84314392a55fd2d015c44a0e8c5f15a0075f0219289f77cf5cf64306f746", "class_name": "RelatedNodeInfo"}}, "text": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. ", "start_char_idx": 591, "end_char_idx": 709, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c676c70a-da45-43e0-bd7b-5cdd29aaddac": {"__data__": {"id_": "c676c70a-da45-43e0-bd7b-5cdd29aaddac", "embedding": null, "metadata": {"window": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). ", "original_text": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2eee2bd9-d3c6-42b6-a5ba-161c3140627e", "node_type": "1", "metadata": {"window": "the lord of salvation). The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. ", "original_text": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "d02c83cd7bd3ba32e8b788615a46b394170784591fbdd5cb26bebb19b4a165a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "323d4d8a-4832-4fba-a5f6-fbc36be4955f", "node_type": "1", "metadata": {"window": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "Everybody \nseek to get rid of this cycle and get nirvana. "}, "hash": "981a2141f5cbdefab682b0062b64f1e0da054f69eb7ef68ad0576e3857744f8e", "class_name": "RelatedNodeInfo"}}, "text": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. ", "start_char_idx": 709, "end_char_idx": 993, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "323d4d8a-4832-4fba-a5f6-fbc36be4955f": {"__data__": {"id_": "323d4d8a-4832-4fba-a5f6-fbc36be4955f", "embedding": null, "metadata": {"window": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "Everybody \nseek to get rid of this cycle and get nirvana. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c676c70a-da45-43e0-bd7b-5cdd29aaddac", "node_type": "1", "metadata": {"window": "The holy shrine, which is said to have risen on its own, is one of eight such \nshrines (the others include Srirangam, Sri Mushnam, Tirupati, Naimisaranyam, Thottadri, Pushkaram and Badrinath). \n This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). ", "original_text": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "996143074f7723abb71f2138cdecb5a7243effd6e0e8f950e72d0cbc6119781e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "627f64b5-cc0a-44f2-878d-1f6b1b555992", "node_type": "1", "metadata": {"window": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "A visit to Muktinath will help to achieve this goal. "}, "hash": "2a154b702bd4ee31204f0199b476dceee862eff78278677b5359ec4911eeaa59", "class_name": "RelatedNodeInfo"}}, "text": "Everybody \nseek to get rid of this cycle and get nirvana. ", "start_char_idx": 993, "end_char_idx": 1051, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "627f64b5-cc0a-44f2-878d-1f6b1b555992": {"__data__": {"id_": "627f64b5-cc0a-44f2-878d-1f6b1b555992", "embedding": null, "metadata": {"window": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "A visit to Muktinath will help to achieve this goal. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "323d4d8a-4832-4fba-a5f6-fbc36be4955f", "node_type": "1", "metadata": {"window": "This Pagoda Style Muktinath Temple is also one of 10 8 Vaishnava shrines. Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "Everybody \nseek to get rid of this cycle and get nirvana. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "0e758ef37a324a08a6c6a2f2ea11271b8d3f09f20e7a55cdf900edc6d3a62d84", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c18f16c-acca-4b17-af67-b8012d776564", "node_type": "1", "metadata": {"window": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). "}, "hash": "faaa06e6818489aae56af31a028fe3bb4c9f1f0366f266b491800c523cab060d", "class_name": "RelatedNodeInfo"}}, "text": "A visit to Muktinath will help to achieve this goal. ", "start_char_idx": 1051, "end_char_idx": 1106, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c18f16c-acca-4b17-af67-b8012d776564": {"__data__": {"id_": "2c18f16c-acca-4b17-af67-b8012d776564", "embedding": null, "metadata": {"window": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "627f64b5-cc0a-44f2-878d-1f6b1b555992", "node_type": "1", "metadata": {"window": "Here in the early 19th century the Hindus \nconsecrated a Vishnu temple and named is Muktinath - Lord of Liberation. Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "A visit to Muktinath will help to achieve this goal. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "7d8eb1db48c0263b43bbea6b7400ad96874bf174e266c567ca7cd292c496a0a7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4806f4d4-e0a6-42fe-bab5-a09a31869025", "node_type": "1", "metadata": {"window": "Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. "}, "hash": "024d696a44aa89949fc7896d1579052d2ca0516d26a7885c9a13836561f2d64a", "class_name": "RelatedNodeInfo"}}, "text": "There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). ", "start_char_idx": 1106, "end_char_idx": 1299, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4806f4d4-e0a6-42fe-bab5-a09a31869025": {"__data__": {"id_": "4806f4d4-e0a6-42fe-bab5-a09a31869025", "embedding": null, "metadata": {"window": "Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d", "node_type": "4", "metadata": {"page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c18f16c-acca-4b17-af67-b8012d776564", "node_type": "1", "metadata": {"window": "Against a backdrop of incredible \nstarkness you can sit and stare to the south the snow covered Annapurna range, or to th e north the Tibetan plateau \n \nImportances: \nAccording to Hindu Myth it is belief that this world is \"MAYA\" (an illusion) of life cycle of birth and rebirth. Everybody \nseek to get rid of this cycle and get nirvana. A visit to Muktinath will help to achieve this goal. There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "original_text": "There are 108 \nwaterspouts in the back yard of this temple called as Muktidhara where froozen water are continuously flowing \nfrom the bull head and two Kunda (ponds in front of the temple). ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "hash": "578932a44c38de1d5de0aea630d8ac8319f70938314b20fe882254edd8f4b5ff", "class_name": "RelatedNodeInfo"}}, "text": "Taking bath in these 108 waterspouts and two \nkunda belive that it brings them salvation. ", "start_char_idx": 1299, "end_char_idx": 1391, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1dcaf295-e021-4a46-a0b2-b702b52a6625": {"__data__": {"id_": "1dcaf295-e021-4a46-a0b2-b702b52a6625", "embedding": null, "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. ", "original_text": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6c2e21a2-b490-4b89-bb56-136d64d5176b", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. ", "original_text": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n"}, "hash": "254f249b3c2c6c153b79007839e6fdc61e8de88b4112348aaee958e4cf1655ff", "class_name": "RelatedNodeInfo"}}, "text": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. ", "start_char_idx": 0, "end_char_idx": 189, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6c2e21a2-b490-4b89-bb56-136d64d5176b": {"__data__": {"id_": "6c2e21a2-b490-4b89-bb56-136d64d5176b", "embedding": null, "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. ", "original_text": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1dcaf295-e021-4a46-a0b2-b702b52a6625", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. ", "original_text": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "08971e8286ca2c89dfdf94e96dcab00a0952064ae831280b46e77daaa5c61938", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "419073dd-6053-457f-883a-053dd428f9b1", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. ", "original_text": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n"}, "hash": "e704f4d714234665df6a2a9e9b676d99ea3068dedeb03a9513367966aa9d32bc", "class_name": "RelatedNodeInfo"}}, "text": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n", "start_char_idx": 189, "end_char_idx": 275, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "419073dd-6053-457f-883a-053dd428f9b1": {"__data__": {"id_": "419073dd-6053-457f-883a-053dd428f9b1", "embedding": null, "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. ", "original_text": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6c2e21a2-b490-4b89-bb56-136d64d5176b", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. ", "original_text": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "cc1f5865c5ee736039a76889e75ff9a4219c68d9bc18f368f8a7f7e3cafcfbc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f3d8f307-1cf9-473e-8720-8f1edb18be2d", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. ", "original_text": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. "}, "hash": "9dda17dedbb4784e64f6b8c648451995b07dbba0d8b672fcec5e4757b7019584", "class_name": "RelatedNodeInfo"}}, "text": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n", "start_char_idx": 275, "end_char_idx": 546, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f3d8f307-1cf9-473e-8720-8f1edb18be2d": {"__data__": {"id_": "f3d8f307-1cf9-473e-8720-8f1edb18be2d", "embedding": null, "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. ", "original_text": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "419073dd-6053-457f-883a-053dd428f9b1", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. ", "original_text": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "dbe0188ad4a10fe88fd8eacccd21b0ad9ad0bee4f5d20f424e8d2054a0928f17", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6c34ca18-ab01-4b0b-bef7-c148cf014e89", "node_type": "1", "metadata": {"window": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. ", "original_text": "Road are blacktop and \ncomfortable for the journey. "}, "hash": "d18aa872b71c76367534f8a9c0ef126addf0df255fff2d1bcb52621d85f29b95", "class_name": "RelatedNodeInfo"}}, "text": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. ", "start_char_idx": 546, "end_char_idx": 753, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6c34ca18-ab01-4b0b-bef7-c148cf014e89": {"__data__": {"id_": "6c34ca18-ab01-4b0b-bef7-c148cf014e89", "embedding": null, "metadata": {"window": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. ", "original_text": "Road are blacktop and \ncomfortable for the journey. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f3d8f307-1cf9-473e-8720-8f1edb18be2d", "node_type": "1", "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. ", "original_text": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "27dee72b94c18ccda025c57038b293569cb0f2e534f9097158cbc2a5ed107dfc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431", "node_type": "1", "metadata": {"window": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. "}, "hash": "ecd95e7a75cbb998f07f17fffc1ab34167bd9594d4324310869e2aa7ad293ef7", "class_name": "RelatedNodeInfo"}}, "text": "Road are blacktop and \ncomfortable for the journey. ", "start_char_idx": 753, "end_char_idx": 805, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431": {"__data__": {"id_": "b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431", "embedding": null, "metadata": {"window": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6c34ca18-ab01-4b0b-bef7-c148cf014e89", "node_type": "1", "metadata": {"window": "This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. ", "original_text": "Road are blacktop and \ncomfortable for the journey. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "9da867d47798ef725a7821d78606a518dac4264a25d8501e00d12905906c1a10", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "163dc7ca-a294-44fb-9218-c6ed5185d210", "node_type": "1", "metadata": {"window": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "You can \neasily find different catogories hotel from standard to five star level as per your choice. "}, "hash": "32bece7669e8e2611f2a65384b8b7ccd9b09fac3c6fc0b8db63bcf6651f14fe8", "class_name": "RelatedNodeInfo"}}, "text": "Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. ", "start_char_idx": 805, "end_char_idx": 881, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "163dc7ca-a294-44fb-9218-c6ed5185d210": {"__data__": {"id_": "163dc7ca-a294-44fb-9218-c6ed5185d210", "embedding": null, "metadata": {"window": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "You can \neasily find different catogories hotel from standard to five star level as per your choice. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431", "node_type": "1", "metadata": {"window": "Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "b8e33cb242afc0bf324dbe4bbe2ffbbd779f9a2cb2556c61fee45123b6bcb840", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e", "node_type": "1", "metadata": {"window": "Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. "}, "hash": "ab55eeecc0341d1338c3687a0343a87723649fa41d34d51db4e0625c4fc59f49", "class_name": "RelatedNodeInfo"}}, "text": "You can \neasily find different catogories hotel from standard to five star level as per your choice. ", "start_char_idx": 881, "end_char_idx": 984, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e": {"__data__": {"id_": "ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e", "embedding": null, "metadata": {"window": "Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "163dc7ca-a294-44fb-9218-c6ed5185d210", "node_type": "1", "metadata": {"window": "First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "You can \neasily find different catogories hotel from standard to five star level as per your choice. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "57d6cbe58cd78370025349ac5e1fa7c023e9600f1c83c6869e66312b18df58db", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2b2ffcc6-21f2-472a-938b-b1df7e9515a0", "node_type": "1", "metadata": {"window": "Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. "}, "hash": "ea2ca5d5bff613d0361ca7cf3c92f2f193b8df56d1375d6ec70d8e659c233cbb", "class_name": "RelatedNodeInfo"}}, "text": "Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. ", "start_char_idx": 984, "end_char_idx": 1154, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2b2ffcc6-21f2-472a-938b-b1df7e9515a0": {"__data__": {"id_": "2b2ffcc6-21f2-472a-938b-b1df7e9515a0", "embedding": null, "metadata": {"window": "Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a", "node_type": "4", "metadata": {"page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e", "node_type": "1", "metadata": {"window": "Road are blacktop and \ncomfortable for the journey. Whereas, Pokhara is easily accessible by 25 minutes flight from Kathmandu. You can \neasily find different catogories hotel from standard to five star level as per your choice. Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "original_text": "Most of the popular hotels, \nshopping center and restaurant are located near Lakeside and they do accept the major Credit Card, Visa Card, \nMaster Card, AMX, and more. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "hash": "e9118e8a7c940fac9b4e1f4a0e3556ee52076c8e6b397cd0cdd21cecd00d7b35", "class_name": "RelatedNodeInfo"}}, "text": "You can e njoy varities of foods with live music and cutural dance shows in diffrent \nrestaurant here. ", "start_char_idx": 1154, "end_char_idx": 1259, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "028f2cbc-d5a3-4c41-9cd7-ac718eca0b12": {"__data__": {"id_": "028f2cbc-d5a3-4c41-9cd7-ac718eca0b12", "embedding": null, "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. ", "original_text": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7d9ec202-c582-4890-b9d4-401a2ad0db07", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. ", "original_text": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. "}, "hash": "c80ac546f60e2bac383441fafe028ad6efa51c00bae63c1492b082dc59b40b68", "class_name": "RelatedNodeInfo"}}, "text": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. ", "start_char_idx": 0, "end_char_idx": 164, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7d9ec202-c582-4890-b9d4-401a2ad0db07": {"__data__": {"id_": "7d9ec202-c582-4890-b9d4-401a2ad0db07", "embedding": null, "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. ", "original_text": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "028f2cbc-d5a3-4c41-9cd7-ac718eca0b12", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. ", "original_text": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "3e3c38153796a12fa0a95f3b807a3b89cd7b2d069596db01d0e3ee4996217ed2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "30b0ca3e-2620-4fe1-b097-72c110d705d1", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. ", "original_text": "It might take 8/9 hours to reach at Jomsom. "}, "hash": "4399ea8af3bab837d0ce0fb50e56086eeed5f1f92b628e0e6affddf3ea33843e", "class_name": "RelatedNodeInfo"}}, "text": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. ", "start_char_idx": 164, "end_char_idx": 282, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "30b0ca3e-2620-4fe1-b097-72c110d705d1": {"__data__": {"id_": "30b0ca3e-2620-4fe1-b097-72c110d705d1", "embedding": null, "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. ", "original_text": "It might take 8/9 hours to reach at Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7d9ec202-c582-4890-b9d4-401a2ad0db07", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. ", "original_text": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "8d2444ffc2b7d5052ab66978a253658c15483471be30c952865cd8ef647d2083", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0a2374ea-14df-444e-b8fc-a813df7bfa17", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n", "original_text": "Please do not expect for \nthe star hotel here. "}, "hash": "d9227b99094ba1ba13e00f50f1d12b2439134d129f34e954cfe9e436ed2e5d34", "class_name": "RelatedNodeInfo"}}, "text": "It might take 8/9 hours to reach at Jomsom. ", "start_char_idx": 282, "end_char_idx": 326, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0a2374ea-14df-444e-b8fc-a813df7bfa17": {"__data__": {"id_": "0a2374ea-14df-444e-b8fc-a813df7bfa17", "embedding": null, "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n", "original_text": "Please do not expect for \nthe star hotel here. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "30b0ca3e-2620-4fe1-b097-72c110d705d1", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. ", "original_text": "It might take 8/9 hours to reach at Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "091b791d1a78b55c5bf850ea58f54be697ccc88ac7827810d4e3cb1b10184bc0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "70372725-dd90-49e5-ac9c-37f51dff536c", "node_type": "1", "metadata": {"window": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. ", "original_text": "Jomsom is also connected via air way from Pokhara. "}, "hash": "987e4544590f10aa75194317af8bbd29ee613d72cd33804d67d5b0deff2bf3e2", "class_name": "RelatedNodeInfo"}}, "text": "Please do not expect for \nthe star hotel here. ", "start_char_idx": 326, "end_char_idx": 374, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70372725-dd90-49e5-ac9c-37f51dff536c": {"__data__": {"id_": "70372725-dd90-49e5-ac9c-37f51dff536c", "embedding": null, "metadata": {"window": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. ", "original_text": "Jomsom is also connected via air way from Pokhara. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0a2374ea-14df-444e-b8fc-a813df7bfa17", "node_type": "1", "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n", "original_text": "Please do not expect for \nthe star hotel here. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "ce014399d2295a62538abcedfea5d49202aa8024a59b73ff31319cf0ef700ed5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9", "node_type": "1", "metadata": {"window": "It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n", "original_text": "15 minute s flight from Pokhara will take you \nto the Jomsom. "}, "hash": "55d26d787b24a0de1ad4ffb63cba244cbaf30fcd55912bdde74e31cc052699c8", "class_name": "RelatedNodeInfo"}}, "text": "Jomsom is also connected via air way from Pokhara. ", "start_char_idx": 374, "end_char_idx": 425, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9": {"__data__": {"id_": "c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9", "embedding": null, "metadata": {"window": "It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n", "original_text": "15 minute s flight from Pokhara will take you \nto the Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "70372725-dd90-49e5-ac9c-37f51dff536c", "node_type": "1", "metadata": {"window": "Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. ", "original_text": "Jomsom is also connected via air way from Pokhara. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "2c24f0f3c729b1fe69b23b2ecb720f80c63c127dc518b2cc0375ba6869c0f712", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "907087b0-4704-4abb-bf94-b06d63fc3627", "node_type": "1", "metadata": {"window": "Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. ", "original_text": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n"}, "hash": "f6f068270d3dfc0bfa82fbe9bf2aa95c217b5f58a2cdac83c998b96be05ac688", "class_name": "RelatedNodeInfo"}}, "text": "15 minute s flight from Pokhara will take you \nto the Jomsom. ", "start_char_idx": 425, "end_char_idx": 488, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "907087b0-4704-4abb-bf94-b06d63fc3627": {"__data__": {"id_": "907087b0-4704-4abb-bf94-b06d63fc3627", "embedding": null, "metadata": {"window": "Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. ", "original_text": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9", "node_type": "1", "metadata": {"window": "It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n", "original_text": "15 minute s flight from Pokhara will take you \nto the Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "cf762f965b766980c5d48cbbb7e7f7a8ea5b58f423d04e2c9d4e6523e746d7e6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "17304c45-6861-4e54-9145-85d48955a89a", "node_type": "1", "metadata": {"window": "Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. ", "original_text": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. "}, "hash": "2e2bb2aa78b0162919fefb794430db07117b67dbe4b465c9b0b3486458a8dac2", "class_name": "RelatedNodeInfo"}}, "text": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n", "start_char_idx": 488, "end_char_idx": 577, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "17304c45-6861-4e54-9145-85d48955a89a": {"__data__": {"id_": "17304c45-6861-4e54-9145-85d48955a89a", "embedding": null, "metadata": {"window": "Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. ", "original_text": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "907087b0-4704-4abb-bf94-b06d63fc3627", "node_type": "1", "metadata": {"window": "Please do not expect for \nthe star hotel here. Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. ", "original_text": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "0e4043e6968130ffab7a959adacdc0546005aa637b350284e51a46190edcedbd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6b970b7f-58be-4c41-be0a-d7d9b07203f0", "node_type": "1", "metadata": {"window": "15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. ", "original_text": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n"}, "hash": "531daef9bb4196b3f6796a59af9e1661ef1006e09172d02c5d01782d15a44405", "class_name": "RelatedNodeInfo"}}, "text": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. ", "start_char_idx": 577, "end_char_idx": 780, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6b970b7f-58be-4c41-be0a-d7d9b07203f0": {"__data__": {"id_": "6b970b7f-58be-4c41-be0a-d7d9b07203f0", "embedding": null, "metadata": {"window": "15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. ", "original_text": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "17304c45-6861-4e54-9145-85d48955a89a", "node_type": "1", "metadata": {"window": "Jomsom is also connected via air way from Pokhara. 15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. ", "original_text": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "0abf361bed70d5f2ba4ad4ea885a1da836a696140baf70406d8efbbc74c057e3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d69726f7-c633-4f58-9ce2-20dabee28f66", "node_type": "1", "metadata": {"window": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. ", "original_text": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. "}, "hash": "06fe3046c8d03861ae9e437342eb1790e6df5e625cdb117982b824c79846d5fb", "class_name": "RelatedNodeInfo"}}, "text": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n", "start_char_idx": 780, "end_char_idx": 870, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d69726f7-c633-4f58-9ce2-20dabee28f66": {"__data__": {"id_": "d69726f7-c633-4f58-9ce2-20dabee28f66", "embedding": null, "metadata": {"window": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. ", "original_text": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6b970b7f-58be-4c41-be0a-d7d9b07203f0", "node_type": "1", "metadata": {"window": "15 minute s flight from Pokhara will take you \nto the Jomsom. And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. ", "original_text": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "b003464e8657744d07be36312c652d0324869c50062afe7a5292af012a3fd255", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2fd2ca3c-d471-42c6-ba5e-259b29a4768b", "node_type": "1", "metadata": {"window": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. ", "original_text": "There is no direct flight from Kathmandu. "}, "hash": "6f61966a63821ea916b55c4bb7cfd598aab19a2e221ee113b4109dde9b3c57f6", "class_name": "RelatedNodeInfo"}}, "text": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. ", "start_char_idx": 870, "end_char_idx": 1002, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2fd2ca3c-d471-42c6-ba5e-259b29a4768b": {"__data__": {"id_": "2fd2ca3c-d471-42c6-ba5e-259b29a4768b", "embedding": null, "metadata": {"window": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. ", "original_text": "There is no direct flight from Kathmandu. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d69726f7-c633-4f58-9ce2-20dabee28f66", "node_type": "1", "metadata": {"window": "And on the same day you can visit Muktinath Temple and return back to Jomsom as well. \n On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. ", "original_text": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "c64bc3abc11463707f6283132d4cc46f896df7bb802d79669510f9184387dca8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9389dd14-1645-4a0c-b5b3-61df42c6bf08", "node_type": "1", "metadata": {"window": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. ", "original_text": "First, take flight \nto Pokhara, then to Jomsom. "}, "hash": "82599fc2c61cddea389c5833eea9b9a3d32de258e0a9742fe8471d55505de2c4", "class_name": "RelatedNodeInfo"}}, "text": "There is no direct flight from Kathmandu. ", "start_char_idx": 1002, "end_char_idx": 1045, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9389dd14-1645-4a0c-b5b3-61df42c6bf08": {"__data__": {"id_": "9389dd14-1645-4a0c-b5b3-61df42c6bf08", "embedding": null, "metadata": {"window": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. ", "original_text": "First, take flight \nto Pokhara, then to Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2fd2ca3c-d471-42c6-ba5e-259b29a4768b", "node_type": "1", "metadata": {"window": "On the very next day morning, walk for 25 minutes to catch a Jeep then 1:30 hour drive to Ranipauwa - Jeep Station \nat M uktinath Temple (3710m) and again hike for 25 minutes till the temple entrance. Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. ", "original_text": "There is no direct flight from Kathmandu. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "d8e28f03b8daebd423614014fa7e1fa07fe5faa9b11a53b4f086909afe899469", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f350b3ab-7bc7-440a-9d8e-81046830991c", "node_type": "1", "metadata": {"window": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. "}, "hash": "80b6e1d609510f37890d8fbe4692141a59def38ee399f358d39d2ac39370d2f8", "class_name": "RelatedNodeInfo"}}, "text": "First, take flight \nto Pokhara, then to Jomsom. ", "start_char_idx": 1045, "end_char_idx": 1093, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f350b3ab-7bc7-440a-9d8e-81046830991c": {"__data__": {"id_": "f350b3ab-7bc7-440a-9d8e-81046830991c", "embedding": null, "metadata": {"window": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9389dd14-1645-4a0c-b5b3-61df42c6bf08", "node_type": "1", "metadata": {"window": "Have darshan/pooja at temple \nand either return directly to Pokhara or halt at Beni. \n \n Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. ", "original_text": "First, take flight \nto Pokhara, then to Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "7403a1c604c475c28bccf27cf5e193efee4d1b91f6b30ca61dcf84ff02c97f5c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "be0bce66-2562-4787-9f85-5fd437201f25", "node_type": "1", "metadata": {"window": "There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "Sometimes flight might get canceled due to bad weather. "}, "hash": "0fee0a2248c97aebfdd8154c1c8212bedca6b16ccea6c5e3348811c69efb80d5", "class_name": "RelatedNodeInfo"}}, "text": "Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. ", "start_char_idx": 1093, "end_char_idx": 1201, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "be0bce66-2562-4787-9f85-5fd437201f25": {"__data__": {"id_": "be0bce66-2562-4787-9f85-5fd437201f25", "embedding": null, "metadata": {"window": "There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "Sometimes flight might get canceled due to bad weather. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f350b3ab-7bc7-440a-9d8e-81046830991c", "node_type": "1", "metadata": {"window": "Option 02: By Flight - 1 night (Kathmandu - Pokhara - Jomsom - Muktinath) \nJomsom is the nearer airport to reach Muktinath Temple. There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "e4db01873a27005c41a35cb3ae354fe4ef8ab054ab12170db3ddbda91d28af4a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0ed5e479-952d-4459-8e88-ecb54e9a8345", "node_type": "1", "metadata": {"window": "First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. "}, "hash": "51ed22d743d34ce12e92c7403321417aac1799d5a63ed0156e7f8668cc38e4dc", "class_name": "RelatedNodeInfo"}}, "text": "Sometimes flight might get canceled due to bad weather. ", "start_char_idx": 1201, "end_char_idx": 1258, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0ed5e479-952d-4459-8e88-ecb54e9a8345": {"__data__": {"id_": "0ed5e479-952d-4459-8e88-ecb54e9a8345", "embedding": null, "metadata": {"window": "First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "be0bce66-2562-4787-9f85-5fd437201f25", "node_type": "1", "metadata": {"window": "There is no direct flight from Kathmandu. First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "Sometimes flight might get canceled due to bad weather. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a7dc25dd9d1e54a2e780d793b97978f014e7423b3eeb887959bc9fe065f2c2cb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "14f74901-ad84-493d-98ef-f6e18569dc84", "node_type": "1", "metadata": {"window": "Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "18 seats Twin Otter plane carries passengers in this route. \n "}, "hash": "3ba0837edef039b799be1f11c5ebecea79a71254691cc39461a54782328aa05b", "class_name": "RelatedNodeInfo"}}, "text": "So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. ", "start_char_idx": 1258, "end_char_idx": 1343, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "14f74901-ad84-493d-98ef-f6e18569dc84": {"__data__": {"id_": "14f74901-ad84-493d-98ef-f6e18569dc84", "embedding": null, "metadata": {"window": "Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "18 seats Twin Otter plane carries passengers in this route. \n ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e", "node_type": "4", "metadata": {"page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0ed5e479-952d-4459-8e88-ecb54e9a8345", "node_type": "1", "metadata": {"window": "First, take flight \nto Pokhara, then to Jomsom. Since, Jomsom is the windy place; flights are operated in the early morning onl y if the \nweather permits. Sometimes flight might get canceled due to bad weather. So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. 18 seats Twin Otter plane carries passengers in this route. \n ", "original_text": "So, one night stay at Pokhara is must and \ntakes next day morning flight to Jomsom. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "hash": "e763b45ae6bdb7668ed004a0f90ffade53be9f902a4a11dcb0325b566d3566ff", "class_name": "RelatedNodeInfo"}}, "text": "18 seats Twin Otter plane carries passengers in this route. \n ", "start_char_idx": 1343, "end_char_idx": 1406, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0881a8f4-0cc8-4880-882e-5c5b4acdaaf8": {"__data__": {"id_": "0881a8f4-0cc8-4880-882e-5c5b4acdaaf8", "embedding": null, "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. ", "original_text": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "de36e662-d776-4bd7-8dc0-835d4c72d550", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n", "original_text": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. "}, "hash": "dc47e658f91bc1f494a310488fb794b7addfa31b0ba7f7a544e6a57266613f34", "class_name": "RelatedNodeInfo"}}, "text": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. ", "start_char_idx": 0, "end_char_idx": 128, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "de36e662-d776-4bd7-8dc0-835d4c72d550": {"__data__": {"id_": "de36e662-d776-4bd7-8dc0-835d4c72d550", "embedding": null, "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n", "original_text": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0881a8f4-0cc8-4880-882e-5c5b4acdaaf8", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. ", "original_text": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "18bb02afde196144b894e5fe3006cbacaf488bbc4126cd8fc536922ee9a7eac3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "30250a1b-e5eb-43e8-ba8c-12d181b2de8b", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. ", "original_text": "The helipad is located at Ranipauwa. "}, "hash": "6da58b6fd0ea4a3641b45cc6b20d56275bb4bd0f4f3ccefe7ec6c44f69ba9a13", "class_name": "RelatedNodeInfo"}}, "text": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. ", "start_char_idx": 128, "end_char_idx": 207, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "30250a1b-e5eb-43e8-ba8c-12d181b2de8b": {"__data__": {"id_": "30250a1b-e5eb-43e8-ba8c-12d181b2de8b", "embedding": null, "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. ", "original_text": "The helipad is located at Ranipauwa. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "de36e662-d776-4bd7-8dc0-835d4c72d550", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n", "original_text": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "8879531b46d5a3c25262c4d7400b7205d3ccc752eddb44a657c5f68a711f3cc1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7c1e72df-7ff1-4e73-987a-8c8706c5066a", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. ", "original_text": "From here the temple can be reached via 30 minutes \nwalking. "}, "hash": "d144d0a4801d5e26e17ad9f0b576dbd56ea6bc2754bf7026f2e1bb09f7a24a34", "class_name": "RelatedNodeInfo"}}, "text": "The helipad is located at Ranipauwa. ", "start_char_idx": 207, "end_char_idx": 244, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c1e72df-7ff1-4e73-987a-8c8706c5066a": {"__data__": {"id_": "7c1e72df-7ff1-4e73-987a-8c8706c5066a", "embedding": null, "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. ", "original_text": "From here the temple can be reached via 30 minutes \nwalking. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "30250a1b-e5eb-43e8-ba8c-12d181b2de8b", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. ", "original_text": "The helipad is located at Ranipauwa. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "a6f5cdc9ff078b32e590699faa877f298b966bf70bdbadab78198c58b8a11e23", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3eb503e4-29e8-4cde-bfcd-3bfbf280aafc", "node_type": "1", "metadata": {"window": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n", "original_text": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n"}, "hash": "1a627b7f8eb28099623fa333574cd92887598848fc1ca696b75f7352883d9061", "class_name": "RelatedNodeInfo"}}, "text": "From here the temple can be reached via 30 minutes \nwalking. ", "start_char_idx": 244, "end_char_idx": 306, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3eb503e4-29e8-4cde-bfcd-3bfbf280aafc": {"__data__": {"id_": "3eb503e4-29e8-4cde-bfcd-3bfbf280aafc", "embedding": null, "metadata": {"window": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n", "original_text": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7c1e72df-7ff1-4e73-987a-8c8706c5066a", "node_type": "1", "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. ", "original_text": "From here the temple can be reached via 30 minutes \nwalking. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "442f468a2adf4ae8131caffcb2ed2f179d6fae84c957ce723258ac2b16710635", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36121d44-18fc-4594-a21a-90e168f5082f", "node_type": "1", "metadata": {"window": "The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n", "original_text": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. "}, "hash": "6db6a148b24881410e36b2cd22d495aaed86301fc15d401c9f89e666094ffaae", "class_name": "RelatedNodeInfo"}}, "text": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n", "start_char_idx": 306, "end_char_idx": 372, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "36121d44-18fc-4594-a21a-90e168f5082f": {"__data__": {"id_": "36121d44-18fc-4594-a21a-90e168f5082f", "embedding": null, "metadata": {"window": "The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n", "original_text": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3eb503e4-29e8-4cde-bfcd-3bfbf280aafc", "node_type": "1", "metadata": {"window": "Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n", "original_text": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "659fa7abc74ab26465769fd3b2468ac72f923559b7370e4b6d83206727689842", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "89120f0b-a7fc-4534-819b-3028f03632d4", "node_type": "1", "metadata": {"window": "From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. ", "original_text": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. "}, "hash": "ca783b449e888396588c12bdbd55b120384f974e1a55ba107c10cecf00bb9537", "class_name": "RelatedNodeInfo"}}, "text": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. ", "start_char_idx": 372, "end_char_idx": 463, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "89120f0b-a7fc-4534-819b-3028f03632d4": {"__data__": {"id_": "89120f0b-a7fc-4534-819b-3028f03632d4", "embedding": null, "metadata": {"window": "From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. ", "original_text": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "36121d44-18fc-4594-a21a-90e168f5082f", "node_type": "1", "metadata": {"window": "The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n", "original_text": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "3fdd2efd79ec275240da72570d4a3ed6ffc62e62a54341c5865c18fe3baa1075", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9acb9a18-b522-4923-a80f-b5e39002b6ef", "node_type": "1", "metadata": {"window": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. ", "original_text": "The average walking duration are 7 to 8 hours per day. \n"}, "hash": "38b6242a5f36e9901c6cfe3d5ef08b9d976bbf9b91165356fb1d324ff7d129d4", "class_name": "RelatedNodeInfo"}}, "text": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. ", "start_char_idx": 463, "end_char_idx": 641, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9acb9a18-b522-4923-a80f-b5e39002b6ef": {"__data__": {"id_": "9acb9a18-b522-4923-a80f-b5e39002b6ef", "embedding": null, "metadata": {"window": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. ", "original_text": "The average walking duration are 7 to 8 hours per day. \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "89120f0b-a7fc-4534-819b-3028f03632d4", "node_type": "1", "metadata": {"window": "From here the temple can be reached via 30 minutes \nwalking. Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. ", "original_text": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "34f36d1f46c6dca05f0ce515c78a2a72a40264cac7023dc6dc04ac59cb88692b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6801aac7-95ab-4b23-ae71-5ba8e456b7a2", "node_type": "1", "metadata": {"window": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). ", "original_text": "What permits are required to visit this temple? \n"}, "hash": "2ffce0fbbf5613427a23841ea27e0996751d6295dc1a49ad1199efb93f32dfee", "class_name": "RelatedNodeInfo"}}, "text": "The average walking duration are 7 to 8 hours per day. \n", "start_char_idx": 641, "end_char_idx": 699, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6801aac7-95ab-4b23-ae71-5ba8e456b7a2": {"__data__": {"id_": "6801aac7-95ab-4b23-ae71-5ba8e456b7a2", "embedding": null, "metadata": {"window": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). ", "original_text": "What permits are required to visit this temple? \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9acb9a18-b522-4923-a80f-b5e39002b6ef", "node_type": "1", "metadata": {"window": "Perform pooja/darshan at the temple and fly back to Kathmandu. \n Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. ", "original_text": "The average walking duration are 7 to 8 hours per day. \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "5071fb6fc29870ef113960de6b89c7a6bde7b23d4d2dc2a2eb39aa02cad265e4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b5ebb767-9e90-4877-b891-cfa65ae8ac8d", "node_type": "1", "metadata": {"window": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n", "original_text": "Muktinath Te mple lies in conservation and trekking zone. "}, "hash": "6a72467f1563bd80d9a815a7cd4d64060d28dbe6383ba14beefef805193a82b0", "class_name": "RelatedNodeInfo"}}, "text": "What permits are required to visit this temple? \n", "start_char_idx": 699, "end_char_idx": 749, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b5ebb767-9e90-4877-b891-cfa65ae8ac8d": {"__data__": {"id_": "b5ebb767-9e90-4877-b891-cfa65ae8ac8d", "embedding": null, "metadata": {"window": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n", "original_text": "Muktinath Te mple lies in conservation and trekking zone. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6801aac7-95ab-4b23-ae71-5ba8e456b7a2", "node_type": "1", "metadata": {"window": "Option 04: By Trek - 7 nights \nMuktinath Temple can also be visited via adventurous trek. Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). ", "original_text": "What permits are required to visit this temple? \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "6ed750fe13985947ecd987fb76903957f37ac8544c40dfda0d45a669f712d763", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ee27b20c-0d1c-4eed-8b0a-ec42beb60e28", "node_type": "1", "metadata": {"window": "The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n", "original_text": "So, two permits are required to enter in this area. "}, "hash": "1c8ae5dff13e7b61bfe293f3cd03f29aae73f4e6d9871b3426a832ee17a402ff", "class_name": "RelatedNodeInfo"}}, "text": "Muktinath Te mple lies in conservation and trekking zone. ", "start_char_idx": 749, "end_char_idx": 807, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ee27b20c-0d1c-4eed-8b0a-ec42beb60e28": {"__data__": {"id_": "ee27b20c-0d1c-4eed-8b0a-ec42beb60e28", "embedding": null, "metadata": {"window": "The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n", "original_text": "So, two permits are required to enter in this area. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b5ebb767-9e90-4877-b891-cfa65ae8ac8d", "node_type": "1", "metadata": {"window": "Fist get yourself at Pokhara and trek starts from Nayapul \n(1 hr drive) following overnight stay at Tikhedunga, Ghorepani, Tatopani, Ghasa, Marpha, Kagbeni then to \nMuktinath. The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n", "original_text": "Muktinath Te mple lies in conservation and trekking zone. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "e99e10ff030674dd44f22f5fe61175e55dd4622c420c4079f11427b5403cf837", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3", "node_type": "1", "metadata": {"window": "What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. ", "original_text": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). "}, "hash": "d9c4af45fd60e323d97d02dc6d3e326976fe9281c207466b4a02f13aaf7da0ea", "class_name": "RelatedNodeInfo"}}, "text": "So, two permits are required to enter in this area. ", "start_char_idx": 807, "end_char_idx": 860, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3": {"__data__": {"id_": "ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3", "embedding": null, "metadata": {"window": "What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. ", "original_text": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ee27b20c-0d1c-4eed-8b0a-ec42beb60e28", "node_type": "1", "metadata": {"window": "The average walking duration are 7 to 8 hours per day. \n What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n", "original_text": "So, two permits are required to enter in this area. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "378b5f12f6b8d61890d7f0e5ca36197b1545e098c103ffa7590965c65b37d48e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9", "node_type": "1", "metadata": {"window": "Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "It is restricted to enter in thi s zone without collecting these two permits. \n"}, "hash": "5d9833b9e06d9d2409ebca30592cf42f3a5277ad564e1c0e7f9e73b27f75335d", "class_name": "RelatedNodeInfo"}}, "text": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). ", "start_char_idx": 860, "end_char_idx": 990, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9": {"__data__": {"id_": "a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9", "embedding": null, "metadata": {"window": "Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "It is restricted to enter in thi s zone without collecting these two permits. \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3", "node_type": "1", "metadata": {"window": "What permits are required to visit this temple? \n Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. ", "original_text": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "9f511815868dbfdcbfb8e963ae16169fe4903396695a255e6476d9fdf296fd2b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9411a935-9ae7-4828-8dde-6bd65f725c38", "node_type": "1", "metadata": {"window": "So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "What are the best months to visit? \n"}, "hash": "90a3f9ac9a1a220338f8d1a23e0bcf0eb51f218cad0895c9d216a06b08a9b04f", "class_name": "RelatedNodeInfo"}}, "text": "It is restricted to enter in thi s zone without collecting these two permits. \n", "start_char_idx": 990, "end_char_idx": 1071, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9411a935-9ae7-4828-8dde-6bd65f725c38": {"__data__": {"id_": "9411a935-9ae7-4828-8dde-6bd65f725c38", "embedding": null, "metadata": {"window": "So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "What are the best months to visit? \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9", "node_type": "1", "metadata": {"window": "Muktinath Te mple lies in conservation and trekking zone. So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "It is restricted to enter in thi s zone without collecting these two permits. \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "870dd6bb80f1432888226877ad1689c7529d41bc59cce4995fce2ad94dff91d8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2da03df3-b5e4-461e-bb72-d20938ceed7c", "node_type": "1", "metadata": {"window": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "March, April, May, June, September, October and November are the best time to visit Muktinath. "}, "hash": "629c8c92bde47716d1a14ed1f7d42b9ed48e0a8d3807cfa603d179a91c4d1ed6", "class_name": "RelatedNodeInfo"}}, "text": "What are the best months to visit? \n", "start_char_idx": 1071, "end_char_idx": 1108, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2da03df3-b5e4-461e-bb72-d20938ceed7c": {"__data__": {"id_": "2da03df3-b5e4-461e-bb72-d20938ceed7c", "embedding": null, "metadata": {"window": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "March, April, May, June, September, October and November are the best time to visit Muktinath. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9411a935-9ae7-4828-8dde-6bd65f725c38", "node_type": "1", "metadata": {"window": "So, two permits are required to enter in this area. One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "What are the best months to visit? \n", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "04acb7df4311c8fbfa241510dd155ac2ed9487f5b00d5a6742d542b89f35a82e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "de777270-1445-4579-a17a-882d7f4653f2", "node_type": "1", "metadata": {"window": "It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. "}, "hash": "f5c9239686a9237ce54ddb6ef325a47897a1dd28655022b1182bfb82fa6eab18", "class_name": "RelatedNodeInfo"}}, "text": "March, April, May, June, September, October and November are the best time to visit Muktinath. ", "start_char_idx": 1108, "end_char_idx": 1204, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "de777270-1445-4579-a17a-882d7f4653f2": {"__data__": {"id_": "de777270-1445-4579-a17a-882d7f4653f2", "embedding": null, "metadata": {"window": "It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4", "node_type": "4", "metadata": {"page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2da03df3-b5e4-461e-bb72-d20938ceed7c", "node_type": "1", "metadata": {"window": "One is \nAnnapurna Conservation Area Project Permit (ACAP) and another is Trekker's Information Management System \nPermit (TIMS). It is restricted to enter in thi s zone without collecting these two permits. \n What are the best months to visit? \n March, April, May, June, September, October and November are the best time to visit Muktinath. During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "original_text": "March, April, May, June, September, October and November are the best time to visit Muktinath. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "hash": "c59e40550900e2fc22f4ff52e6a9447237fb1d27f226e73d1425e2e6a19f804e", "class_name": "RelatedNodeInfo"}}, "text": "During these \nmonths weather will be clear and snowcapped mountains can be observe d closely. ", "start_char_idx": 1204, "end_char_idx": 1300, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/metadata": {"6a631852-fb8e-4ca6-8cb0-1e3b7b881be0": {"doc_hash": "c9db004cc9ab78eb07e58a74000f7fc3d2cdca27ba34f95587e90df97d50a2dd", "ref_doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "5494819d-a99c-4902-ac0a-ae3353796805": {"doc_hash": "0c1e588529d3bae0d528fd061a5a9dc3f9b2dddc7fd883399702036230e84383", "ref_doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}, "29dc06d4-2164-4129-868f-4a613daa06dc": {"doc_hash": "68b2d73a90f40a008c9ada87415c99209a19d546488a12d77a906da2707908c8"}, "c2c51f1a-3c4c-4f7c-b814-4da4ef71765b": {"doc_hash": "25312ac031bbf85e5c609a68efb6c4a55685113dd97de44437b399cfb9f7752c", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "24a22607-3347-48a6-ba9e-d72156f02a9b": {"doc_hash": "b6fcb21a8700301929aede64f2efd79a6e8b948be13afd2c0a6210eee0a86a4a", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "83143d31-b3ca-4cbc-bfc9-1dab636c966a": {"doc_hash": "2d7ecf7f99882f37e92b81895a8c21ba1878600b2865ea411c2a62d734ce6c50", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "68a75094-0a21-47c5-b93e-c35a8d18d947": {"doc_hash": "da325efe8d239b789519ff565d0de03aeca8050d92293c8c00ed0914d8fadcf5", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21": {"doc_hash": "89d4ee84f4baf25e6f9fc47b018739f19e4dd0e68b4ad2d7b4f33386b8dbceb0", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "b02533b8-c391-4c12-b275-64526272c0bf": {"doc_hash": "52dbb0aecc850ef4db9f47d24222375320875012c354a19d1f97f0bb734cfb81", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "d028ff1f-c35d-46cc-bd7f-0ea3a655e513": {"doc_hash": "464d6b8cdfd665124655f2436a76be2e45422bd764c5ce9c15e7560b998e4933", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "83509f26-a88a-45a3-b0cd-4db3cdca12ae": {"doc_hash": "acae0459527b0607aff40a4c527a36eef213d3dcbccf957ae2e0ee30593aac19", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "45e2c9d6-f52d-456d-b335-2ff8a3efc624": {"doc_hash": "bbde829c1d50d17dcf97dacc190aa925c69275a5957aeadd6c1887a759790e00", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "f4dde1b9-a171-4ba5-84f9-f033722675e0": {"doc_hash": "61d79e3ffe5ab0eca2a40bf623590aad609dac7b1a0af41103678f5f548f9f80", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "f6e1d1a5-cf15-41ab-9d85-c1884305d548": {"doc_hash": "e6629156fb5dbe8ef3f117f664cd9933fd42646d0118e8310b4807871b130626", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "1564a509-3858-4618-8b3e-f251f2d7eb84": {"doc_hash": "24683005f42b39dc50479bef6d42bdea379084eb7d89c807118e8975b37720f9", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "866a4b6f-aee8-47d9-be5d-feaa3acad45b": {"doc_hash": "1d9421657c777a5e164b093875fecae15dc998f55f5288dc59e0dd9dc9285569", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "5250640b-2a90-4a3f-beae-e9c425b2e409": {"doc_hash": "7717c6f16a52b0e4056437bb5e01537335d3c2677da3b15f9caede87799c919f", "ref_doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}, "2f562c8e-aa95-4016-aa53-6e4bd04073a3": {"doc_hash": "de7e3702c5dffbda5a956b343e4189ecdc2ac26b115b8c9d16c42fad1561caef"}, "f09ad18b-809e-48c1-9594-08c0e7cd94e8": {"doc_hash": "13833f19f2be9b828a5e1880a8da5ded468ec814ecc3f62114d2b3b7a0ee4ebe", "ref_doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "27006bda-d38e-440b-9b44-51cb0c237139": {"doc_hash": "5582276f90152897b280ac2aab5518c724b175b0650b319156bb96b2ccd817da", "ref_doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "b83b8665-b20a-40cd-8635-744eb32f0865": {"doc_hash": "d10c2a593f4f15cc9701d25c026e4363f05befda3bc13a9715b7dd5b87e38d15", "ref_doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "cb949682-7cf9-433d-a818-d9095bc087fc": {"doc_hash": "2b857a310441fe6cfd32ca89031df61b3467c780431c406c7a953a24e1b4b9b5", "ref_doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}, "cd4d3243-a6ae-445a-b0fd-7f8b40073b34": {"doc_hash": "2bf06f11a004c44b8a39a4c3cb79d07f39634c2bf6c672885e84c14d4cf85a17"}, "e8aaccc0-ad4a-4d97-a3cc-ede7c776cbe1": {"doc_hash": "df027adec706cfe6d3bb41cfbfa51c59d1022d82ca09a6183484a4b1f78a88ba", "ref_doc_id": "7a55c287-d0bf-464b-a5e8-76a17da3deb7"}, "7a55c287-d0bf-464b-a5e8-76a17da3deb7": {"doc_hash": "5ec9e76633315901563f127fe97467a493e4dde09baa6c70e4738760a86a6f30"}, "58e7818c-f650-401b-9c01-7d3905c2407b": {"doc_hash": "d2cb81b295073cfaafd3f0709b330fad37359659f4fcb8f53d02ace1b991a3eb", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "ddec1dd2-5542-4cf6-9516-364a188cb50c": {"doc_hash": "a712d9e8a04da808da931e536fb7b645c46ad3c19f514c1437a367169d8b24c7", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "3d634f4a-6464-4604-b2ce-c9c1644b3d6e": {"doc_hash": "f04a092e1241a9d14ae192314ee71fd646fe73887be88ad5371bcefe944a98c4", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "a07eb1c6-055b-4024-b693-e46624363a24": {"doc_hash": "0b1b0db02bfcb89d33ed50dc724e719826a48684035b9b2a0d97994affc98358", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "7b7b6905-0f25-4a92-8974-653add4ae317": {"doc_hash": "884b1880557fa727c175ed0d58149fd59022b7a1c6ee8771174c0a612e8cf686", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "e1333b08-9d0d-4c3b-a8cd-f51cb20d7314": {"doc_hash": "503b46b484101752f7629c381c64338e9d22368b194faf99a6bb73b992284d12", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "4fe7d6bf-eb33-493b-8b7a-23f0c94b5153": {"doc_hash": "3d0b38232f71814b2850b23cb6705830d87aba9526e669f8fd7ba3720d60bc80", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "7da8e5a7-784b-4f29-84f7-8d458417c35e": {"doc_hash": "b1541a0262e899644211a5d86d48b9c7a45a6193742c2e123769b5ee176c0a50", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "22465b8a-248a-4772-ad2a-fbd03e55b3bf": {"doc_hash": "0a46b7241d90098790c8edfac946b44631b841ec7e86b1467dcf2c788d492653", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "0ecb0ff8-e372-4eaa-8208-e819b5a1714b": {"doc_hash": "b1dac0129ae15e9fd65bab610391fcc05630ae5bfb1fe18fa876ee1b2cbe757c", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "192d43fd-b604-4e93-accc-cc6f5d07cdf9": {"doc_hash": "f99ae9ad763535454cb405a40de269a64388738f2722b94b3d2e9f72fcfa352a", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "6f129632-3f87-44a7-989c-ec9c49d59bc6": {"doc_hash": "2ee50e5bd448fe74f700fa172f5b42426d6fa26466ed2de4590c958d8d7bd45d", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "f4706536-f8da-4795-92dc-d4c1071a07cd": {"doc_hash": "0b6d9ddbb74d42c7d39b565391950e86cb44042591c39c631c1711eb312b732d", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "cbaafd8e-06d1-4576-9bc1-d93dad3170b8": {"doc_hash": "c4b7bd9db0cf50761559b3d4ffdeff1c4cfaaa0fa3123ef5ccba8f82e4b458d3", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "5b642f65-112a-43d4-9b14-335caa53070d": {"doc_hash": "35ce3f7068cc4526211d7cb0a973757077635ef5d28792ec60fb344971e45a9e", "ref_doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}, "8cecea65-dbdf-4b0f-9abe-801a0a87f675": {"doc_hash": "fe188737fcb09df98880e1856a60088a6ebf19583bdeb172bf80ce355bf31ed5"}, "65481478-3f66-4cc5-9784-6b8c54661654": {"doc_hash": "4d4975168b6a514b10e81b220953c6585d4d8d04464c82dedd9e80f3c070b1f9", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "0026c333-d487-4ad1-82eb-c7465cb926b8": {"doc_hash": "1e96da062165bfaa6d3269cecb4b90d6873b8f11b7bffcbd611fcd8e03a222a9", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "65f5353c-1f93-436f-95b4-4aa3f60e03fc": {"doc_hash": "2a1729e07debe9a2a8e8f1ea0d16756a8a7427377a77eab2f93d322526f00cdf", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "4436eb3c-9c54-4893-8d62-32bb42cb46ef": {"doc_hash": "24bc6f9c97826aa5df8b0f8b6f7dc2891be2818d9716f46993c50c1686db2b3c", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e": {"doc_hash": "159125b8d52ecdfcd80fed49d6c4edcd7c0e0f09b31884bcc5f036ba2ce91715", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "8b7b9878-5693-439a-a23e-4cc6d1493350": {"doc_hash": "447a47ccb4f049ff82ce2fed997f1d08252ea0f1aa40a1d4f1d9f4d2e07f5a10", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "95f99dab-63db-4b78-826d-696a8ff66ab9": {"doc_hash": "96c1737632bb8b6fa59f5ef5979e105bb7b60a1d44084659f81e8cafb4a349ca", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "bc64b8ee-928f-4d28-876b-fd773677e984": {"doc_hash": "a55b09f4fc8cfdd3deb3e6edc3135409ea6b65a1a3a05d62b96869ae707c3409", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "3abde7ec-f74a-4629-b17d-67475d92da1f": {"doc_hash": "f75a5ed56b1378087563e58af5d7ce8d6c53911c61437c903cbbb6883d980caf", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "7fdda8db-5310-487c-8bf5-6fa4fd27794d": {"doc_hash": "04341d88cbb3e52481bc7df9cdcecfacdd6d2d84c99e517dac1990c89d5d32e3", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "9a94a297-d0f9-4898-9f65-0144aad5c26f": {"doc_hash": "6ee0229939f6684f40292cd232a0af772296ccedf281994c1f0cc6f98ecaf4b3", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07": {"doc_hash": "279d09e986cea8399a98e283d0f20fb124a678fd68a4f609603a51388b2fd620", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "cadbd380-380b-4f8e-929d-4bb1555aeb54": {"doc_hash": "0cfaeab6ce09b8797f8a3d7d7b4f293736af3d16b14aade8efa9473e10bf21cf", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "ecd2acb0-bb8e-4f4d-9780-e3281c776920": {"doc_hash": "94d9bc44c9d0cadb5d0ba9d614e76a61240a78edee7c5e4baeaa25ace424a965", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "078d64c7-eccc-4149-9a17-fb2926c65eb9": {"doc_hash": "5a531747e2d7950c8e338dd65775b7047a6fc55f809087c86faba7a3785519c4", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "69bc62b7-4d5c-452a-9b92-270911d4a0fe": {"doc_hash": "5b5a1b2b44fc4c61138335f0494eb159bc7fc53925409a23832735f19a2d68dd", "ref_doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}, "bbd5dead-2586-4fd0-a289-d0cfa542d97b": {"doc_hash": "64ad1b234b743c4636134675d9166ba2feecb6bf24ebdb1a20124298e58d9483"}, "28a8185c-f125-4827-b001-61b93cd4bcc4": {"doc_hash": "104f45bc1bda3099027ea72e0875d17bca64f86a18bcfdaac8609258ef5baef7", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "f7144879-9b5e-4f29-bbf9-386cb07ef6fa": {"doc_hash": "054e56c0760f5d47df3ff1cd43aa540fdffe8a5f50217ebdcb464793855bcfab", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "c511a92a-648f-4757-a9ad-d7f0323a2184": {"doc_hash": "de850203af4c7f840a350b5cfc1763419ee11f4e90d71923c5efdfedf0fcd336", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "1e866be3-ffe5-46cf-b4a3-8ac41f938b69": {"doc_hash": "e1239e15ecca227949e8cb9870a237315d8b9e955c4d56ca18bfd1595f15e677", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "b6af877d-2390-4bd8-a6d2-6ed4a772215d": {"doc_hash": "a79f61ff14dd91c1d5f7a31283023e9417e65c3ab5f46bc597b856a4a830eba2", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "d0b11037-1945-40ec-8ab3-47921d1fadcb": {"doc_hash": "45007da16eaff293e642bccc7dc7dc629e1e2e8eaca14c6778e72e60899fb76e", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "7fd8f050-d87e-41cc-9c63-0003e5ee1544": {"doc_hash": "d324fc68d317231c4c7fa2adab814271fbe414cf494de240bb8489ba860109b2", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "a77ba583-0f1d-46b2-8ff7-ae17479ce0fd": {"doc_hash": "2d11f6f89d6d21b2daf59888afb8f2667b218817a282021a32d8407782d54951", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "300666de-ee99-4e70-879a-f6089faafc46": {"doc_hash": "9aa98d54c47bb3556d4dc5205581df26d03acc4a7feffa37353a766bde529c7d", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "fc29303b-07ce-4727-be27-983181f9f61e": {"doc_hash": "f7f8bde444aba95be10ca69c90f4b0214c484c2317524896b0bef95c12182800", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "f8cbb712-32b8-4562-bde4-fb725b3d9205": {"doc_hash": "f971c335a9403059a6bb9f40bb5d1301509f12d556007bb38cd8933f75ebed25", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "5d9e999c-18a0-4cb2-9926-50c308eb129b": {"doc_hash": "bbba3671b4019f6872553af85442c7afd8121273b9ce253f40b2e74e9970ebdc", "ref_doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}, "3db0326d-94e3-46dd-b8ab-01401bb17d05": {"doc_hash": "6541910bb1d02237a2ff9bab27763ea3e3245dc920aabc87dd3216045b28a22b"}, "a56e9c7d-5513-45d6-a642-be7af0c2e85c": {"doc_hash": "0449b10d916f727f89549b3208a5ca5858887a37433cfaea06766f435ada902d", "ref_doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "6a803b57-49fc-48ca-9393-972328ee4732": {"doc_hash": "86a99f89f9c396cdbc4a629785e420c091f9c6da0b20c53b8e1011e555b302b3", "ref_doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}, "177942a4-1a57-4e01-9b0e-e8f1d76e64cb": {"doc_hash": "d0844cb03d654f72009a5fffea5cb78b8e27bdc71d759cb8424bc8c68f4562ce"}, "02ca96c4-6d09-4dc8-92cc-b544eedf62f1": {"doc_hash": "f48ee1f06dc0463c9c65f856b468b4d54f1ba6ecc5b5bab8d22ab1152a9a830d", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "ed46bb94-ddc0-496e-b660-7dc1414efb5a": {"doc_hash": "3520005de673b8a96171d610cc9fa9c0751a273987e53743fa8e790d419bcdae", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "2bad9597-31ad-4288-9dce-b385ed1aac1a": {"doc_hash": "587bf1634e63f7fc3d5eb814d57d5d2708cdea7ebcd7c95f7dc5251d7b701533", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "8ded3bcf-f8a8-461b-a4b9-9a85d82797f3": {"doc_hash": "2337fa9be7ee516f901f606a1cc988606b85ebf1fa57313e157d657d328b3ca9", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "3b9a25ca-ad51-446a-b03e-3ebd0d40242d": {"doc_hash": "e72e40696abefb5cc68236adabd3262125fd8b061b71af4687addf9100b1a024", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "58185f9d-bf2a-443c-bc76-f5bfe06ec79a": {"doc_hash": "c72327d1a9f48578cbae4496b100e1c93dbe352871149ad35dd81d560ac6cfca", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "e2622ce4-abb8-4d42-86d9-966ce0b9ca15": {"doc_hash": "f151f798f494ffbb686539bd9c445289f2cde00f2408abe5d4ec94f6f9ceebe9", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "9949ac58-0bff-4791-bb37-9b42df6977db": {"doc_hash": "02b8310f1f20399b3e821b62dff80bd67b175b2f2460f7546f1d92a83c9e072e", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "5214c1b3-9682-48b2-a25e-f4d5879a1a65": {"doc_hash": "1142ad5166987611f8e1fa281cadea4000ebc933dcb16da176301902cc77039c", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "9e2d2d43-625d-4106-8d00-c47da6bd20c3": {"doc_hash": "aaad65272a514d7bff22172d73445a982ae0ad9864ab2679ef90f6afc9dbe831", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "d6b690e6-46f0-492f-8f4b-3a7a80d07138": {"doc_hash": "f395a689be3e265b51743fd49d88e0c11c5350d62cd7b6900d3deaa6e2f84bc2", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "df93033a-8dd3-49f7-b348-763d0b48e612": {"doc_hash": "5a716a42b0f76aef6a5366348e1afa19b01fa619f07de752312190d4744ee7d9", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "5a860cda-b415-4d83-aa50-ae5b9e63b858": {"doc_hash": "a34ef25a60305e0212ace521276ee46150747400b1d83d8ceacbd81c7a51864b", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "01fe664f-3b2a-46d1-b8bb-7d45779f69f6": {"doc_hash": "b0b670cecd0e66d73d1c25dd74b8a1533da4d9bfa191d8fe399d432e2ca61746", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "bcdc7243-9dd5-445b-b2b7-358c669c8893": {"doc_hash": "8027f99d45c14e41bcac62bd186097937ff411aff05c9e5a7033cfd0d58e665a", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "966263e0-1f7b-4cc1-8815-c3f548f11def": {"doc_hash": "077d87a5950496446f7a3dc9e332f37951def6206cac4f5c8a6755315b4298f3", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "df0da444-94fc-4ca2-99eb-20c90d355490": {"doc_hash": "de32de040b882f95a1f8f9bb99e567aaaaecb5dd9a4da0bd18550073635eaba8", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "adb544e2-adb7-4b83-a8aa-cefb1f2db533": {"doc_hash": "82475dd700d83ce17f557a46295b6e56a8d852866f9f2687ec607653ad4e4a28", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "100c5e3f-39bf-4e91-8a77-6be51ab4a2a1": {"doc_hash": "2dc64656476e178f7db7fa5d7e62caa387d76bcd116140c80f3a1daf43b69da4", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "5f79533d-d369-490f-9016-5149f141ebc5": {"doc_hash": "1181596d1f4d2057b795f0ec44d98eaa634d13620a497314e4ffd154b42ba939", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "05c844be-7464-4e7c-913c-5ffbce72216d": {"doc_hash": "886fb8bb1a8eecd36bedc19933c8a6199d723a1e7ca9ee455a8b873faccd4db1", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "e1e2da1d-700d-405d-8f91-cf85a3d0298c": {"doc_hash": "ee68b11193f2f7434a0697437596d4dbec51e39fba4353b677a1f8bbc24f0c38", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "77272b59-5423-4d64-9966-838372f1baf0": {"doc_hash": "108abe8e63ef8c042b1b536c75df39ad10edbebed6313672560b4e19d62b9948", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "2e3ae5c2-1359-477f-8d03-f94011102462": {"doc_hash": "b822c488070552c772382202f987220386bc64b80f1310291b30dfb9302c0394", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "e2638c82-3b0f-4b13-bb08-7dda091f3742": {"doc_hash": "2cc36db796a77fc17e6d3365a82a138f007432d538b3ad309a823def57fe4556", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "490925cf-dc04-479d-9867-e2198bb474a1": {"doc_hash": "7c60974c896afbed455d40151375b873520ee1577b9e2a9e9d56773e941c8f82", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "b33fb72e-9070-4eae-a7b0-c567c9f6ea22": {"doc_hash": "329562f538de533ac04930a0491a1141cbe7f9c0f8b9c6be2fe3b9eebefb67ae", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "49b8caf2-6a12-493b-ad4c-0f93bcd226dd": {"doc_hash": "a08acd50b4a9337bf0ce4e1c3967ceff910e773626c4c5321f5514d57ba48476", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "95c6c4a4-fa11-42d8-9f26-8a79039a5c52": {"doc_hash": "710921ac2c79852edb4fdb31fc6d88d72723180568bd2fe2f5e5959676715456", "ref_doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}, "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1": {"doc_hash": "39dca0db520c27622ed465d1a78020c8d0dbf6277fc22c50bc1b9a5184131a9d"}, "7bd2d852-2912-49ec-a0a2-20b8af746cd7": {"doc_hash": "18e8e98407c8f16e6aaa334e101951163ad97d3efe49b41269a3b78b2e61809f", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197": {"doc_hash": "3eb3ef05a00318bb96c797a29ac09dc016034ae41349931ff24dbd7066420b02", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "611a01a0-1846-4956-afa8-1721c7e159c6": {"doc_hash": "3716061964c4b5f6af512bd66715130734b2396248b8651e1cb04606f4748c3e", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "dc6ba06b-d8da-41cc-9bfe-2278eea4e56a": {"doc_hash": "90a008adf8ae22855df3d111b060d60a7b802980d1a64da565e094abb21450dd", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "93c1fbbd-2699-4ae1-9962-68a0659657e4": {"doc_hash": "f8d6db3e149d187053ef4c249d7effa4514429101a242c6c0546e19bd2132d5d", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "8f813959-7893-486a-8d03-714339c68ce4": {"doc_hash": "cd0dcaacfb6502f4490696b7bcc7cebf7d856fddd51c76212bf4aff0acab93c6", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "f05a433d-ed66-4ed2-833c-2883a8db685a": {"doc_hash": "56323480fe768b48f8e0f6fe8720bde1a532252f3ca12cbc774e82e20afb0c1d", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "28408e6d-fbfd-45e2-bc90-cb420df61123": {"doc_hash": "3c4824b6be9190343060bdf4cbe8935d5ef78e25cd677cd2963766916009b551", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "6a5bd365-07fd-49c3-bbee-d97f50e051da": {"doc_hash": "373877023361fa1a68eb158e38361a5eb899cec02948dcbe57e6d55baf9dde7b", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "2ab9e166-9379-493f-928b-d89ae364ae9b": {"doc_hash": "4838b459deaa668d1395f3e2e6e98f2e692193816551bad6618107c6bc92b9f8", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "3a4ba3e0-e605-466a-9393-c37ae9f6f854": {"doc_hash": "caa6832a3a4d5a47d404927d56c17e8665f21686a32c9aa35c4a8ba838f728d4", "ref_doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}, "a1b36aea-2d3b-40a3-b0f7-db85022a4e61": {"doc_hash": "924102fdfc00896e04022a7677b6175432a5aa4978eeee134aef29f847cb12e0"}, "58bd1a0c-4caf-4aab-97b9-d69cdaf9170e": {"doc_hash": "bede8fa97a27cb58b76c32a02798b983401f65b7bec838eb6ce31c46c1d3f018", "ref_doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "1af5f605-ca46-404d-8dc5-fc1b82de88e6": {"doc_hash": "d399de32e69df33be137fbc13c25d0aa1ee99776087aaedbc4640e948448f2e3", "ref_doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}, "30351e02-9445-431c-938b-2b002ed4735e": {"doc_hash": "b8b7aa9c0fbf91ab00ed4690f69b63edb7f0ccf393bec1a7fffd927911eb2ba2"}, "0d9629cf-7213-4062-b3e8-7dbdfc05c1e6": {"doc_hash": "2e48ca1910eac25076ebe549102bc0ab1e4d3fd528f1b28f41841725f3941b01", "ref_doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "7d80ba2f-ba44-49e2-97c8-68cea22d2916": {"doc_hash": "b063a541759d5814ab052fe3d20969fa26a2e0f3797a5c91a6e2170ea5be5e63", "ref_doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "bd2cf428-3bc4-4670-a299-bf780c72bea3": {"doc_hash": "b05ca88a4aee4b0340c53c2b304232f6244b4f676dd65f1c7a7503739dd1dffd", "ref_doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6": {"doc_hash": "7f7a7a670c8ea4f4e9361ea27d4e3cda133c33aba43c63e1db4a8f6c757e6318", "ref_doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}, "611b26a5-41ee-46cf-9d5a-b8a84b074f5d": {"doc_hash": "7abd0d51200b4a7168f72d83c8d6e0d2247155bc8081de0a70a34553db59b004"}, "e3c390e3-85d3-4c69-9c96-066b77f5a79a": {"doc_hash": "adb4cc5a403ae850ee709487ec7720ed0be9a4effd8de2d3930dc39af3a7398c", "ref_doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "332a3a26-4225-4fc5-a916-757c9d09546c": {"doc_hash": "d41b409db7458b7627a823b9ddaaa17a421a3ea10f52d33ab50413347e3f489d", "ref_doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}, "dcc276f2-8e13-49fb-b2b8-3af796d95944": {"doc_hash": "1057bb7f603993abad2c2ca50b2dcb3cbedd3f28dd8fce9b60855db1359afdee"}, "e42821bf-4fee-435b-a441-6e711f93afa8": {"doc_hash": "c9af18f24be5da74ac0cb5c291849f213838498a0aad0312be784771ccea5dad", "ref_doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "fba66f0c-582c-4727-a940-6fe6b399d0e8": {"doc_hash": "89ddcb74f3183481237c6bbbff1f33805a8a669017da94e1a468528f7a785cb6", "ref_doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}, "48f148f1-e6de-4ba3-b63f-9a51f934fa53": {"doc_hash": "4218310832865c7d1b174248f3c837481c38fff12ae64704852ec919001c1290"}, "0cb107c3-ba56-4017-bc47-5a0b3b692df2": {"doc_hash": "8d10ec8404907747b8cddb19e8e960fbf7b3ce2b5c5ace69e4a9a5757c28d675", "ref_doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "3b079652-a22e-4cea-aa9a-5405b1f81807": {"doc_hash": "d4d0cf5ab94bdcaa2e2298abb4c88f3d83d4e045844919ad441035c805faaa1d", "ref_doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}, "d8135eba-3ae8-414d-b04b-af55d8891a72": {"doc_hash": "322f1544a732019b830961650203185d6414ab73018226a6bbbac06398a32ca8"}, "ffada7bd-ed77-47e1-b51b-b578bcbabf71": {"doc_hash": "54bed24c53d9a67368bc888e05e62163b274acbf7afaeaddb94567e637458844", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "e2f56072-fc39-4e1a-bee3-73eede268aa6": {"doc_hash": "57e9c2165fbad25a93b8636f794faa2828413d582be651379daaa9cea98c0523", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "9d56e7de-e17b-4ada-a431-edb219071f49": {"doc_hash": "fb9f1f2ec4d473a6ae2542d9f586015ad26e1372410f6d23247e1f7238457e84", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "43a19927-4a33-4a89-83fd-ad58d585938e": {"doc_hash": "b73c0d9e507f3b7bb72cb3af1e508ee32e9c37b1be2f996478ddc19faaec9c59", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "200e4c3e-0cfb-43a0-809f-1ce8197f0fec": {"doc_hash": "037ff7139eb83a25ffa00848f6bf3f6696e81647094fe5384af70ed99deb6ab7", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "4e9eb35d-1e39-4c53-839f-52bec0f97536": {"doc_hash": "e97c763ec8984b3d555018c65cab0e747b9da6052ebd6ec661f74f6fc82e870b", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "979b9255-62a1-439e-98c6-433a4c37af0e": {"doc_hash": "e601390cdbbb2ab1fa260f3d517ff4a464bcb5d71f134fa14a5fe51a9ed17bc4", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d": {"doc_hash": "52ab30146a4f78bf10ee650723bdb4f22aafec24801264eb9f2e125a18a7bc91", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "e209f9bf-dda9-43e3-8c64-38517c43c14f": {"doc_hash": "95dbfa940c2b4f1b8b19d57c947746cf8eb194d6367e09ba4dccd5f881938a08", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "68602cb0-6f9d-4eec-b4dc-af904ddf9455": {"doc_hash": "fc30c6523ed44314ecbba64b0862f7d1590b18c11b6b4f2d788d56dc4f908a83", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "9203e64d-436e-40d3-864d-bc7a6970b421": {"doc_hash": "8ac8ef306acad20abf4f56defa7ce2e75c59657b0e6296b1c14e2371c1c55d8f", "ref_doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}, "b0199728-e735-498f-806f-7bd8330355e0": {"doc_hash": "eee49274899764e3bb0febb1d815bd00c081692b40a4936fbeee2bc4ab0d7caa"}, "a39ac088-9722-442e-9d9b-c0e55fc17801": {"doc_hash": "5baad9b634a835532a52fbde2c52305b69947461da5cec9b6df9f7f1ebf64962", "ref_doc_id": "f6041522-e8d0-4707-9e2e-ce505314b1b8"}, "f6041522-e8d0-4707-9e2e-ce505314b1b8": {"doc_hash": "632eeea7345a9fd1ae830f38ab1a259add1eb91b0a43caa5c19d1e3f74a48fae"}, "eca70f18-6c77-4e89-a476-fd5a9e713826": {"doc_hash": "c0eafe8cebd85018b095dbfbc4f25a01ecf3d40c852011033abcdeab47f3fabe", "ref_doc_id": "ec393c1b-18d0-4461-9c32-b75b3d9ea676"}, "ec393c1b-18d0-4461-9c32-b75b3d9ea676": {"doc_hash": "6f74ab47b81f333223d16660687746278e691bf5e0e7f7c0b8d7e3a331bed1ee"}, "36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499": {"doc_hash": "ccb796d70f7eba75fe7ca3b28a31be9a426039ab1642fe97c36b1b5c09458d02", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e": {"doc_hash": "5324e723627f5aa2d4d9cfb8b7d9ebb405aee39de9ad2066dbcd2fc79116feb3", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "77051c31-f841-4e14-894e-1f862021b3dd": {"doc_hash": "3e64a5ee829a171038e7a28522b21fa8c056432a6fb8310b4cbf5855e984bf4e", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "595b345e-ee63-409c-9292-68359467be4f": {"doc_hash": "ae1bcc921bf4c3444c99b21143e96ad93a8c559aea618e369ab1936f088edfa5", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "57f9f691-887d-4f71-a458-7373c780e219": {"doc_hash": "d16be90a03628e027bff26de5f3e7251000505d68032e54ce62eaaf6d2ec242f", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "e5a1e03f-b0a0-4d55-9200-b54d3c152d3e": {"doc_hash": "7b675d6d2b8705d600dff29a116f438cd1b5bbf3de556f8b643cf670d07c6fdc", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "3acecbd4-1867-4451-b65a-5dbf975bb532": {"doc_hash": "b609ac6689f1aea30b6207b3e771ca35e9c130ec10a42cb8a83792cb83ba8c47", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "0957ead3-48dd-4dba-8d5d-231ad4bf4079": {"doc_hash": "750d43580fed789a33194ce414eb228f5f7ff322e5cda1146cfbcaf44a6a549e", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "e8285ac4-67c6-465e-bb2e-bb4d232ee8b9": {"doc_hash": "d4dada52f8640a4272ecbc9a0216aff8fc10800d82841c20e5091cd29e0863f1", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "f6df0908-4d14-4b3f-89c7-0d0db1a18073": {"doc_hash": "f1865de388634766f17a55d964aa00de9ed02abfb94a8e2dde44eb80e2de5f93", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "403213cd-056c-4dd4-9f30-6c196e4b843a": {"doc_hash": "1eb3d06b0318ad82ba27bf5f659b682d0762e252589bfd7539e14841704b1862", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "763de8e3-b292-4b0f-a23d-352999b8dac3": {"doc_hash": "5e38714ad23c874b443d62c69d7d273dfd9339e70fb2106afbddf40279efe2fb", "ref_doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}, "5ca7e0e6-948d-4bf4-9917-b65984e80d3e": {"doc_hash": "af68137dc0ca85165d63ea5d37801c520fe462f8b4eed62ef677f1a933e9b49a"}, "0029fe70-8458-48fe-9867-052638f3e121": {"doc_hash": "ee14e7bd8caf31fe4377a8bec7c46b295500553936311f75e5e2d1e18063e027", "ref_doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "49061286-377d-4bd2-868f-9af96241cc3f": {"doc_hash": "452b71e565c18d7ebef4de8cbc7f19f9563ed232d0baddf9868e2dd0386f3256", "ref_doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}, "3d83bde6-3c0e-4f0f-b109-1c92783dc84e": {"doc_hash": "75b608b98e13777552562a8927bb2b92c622279cf1a743d873252f2b9db02d48"}, "4e9bcbd6-b2f0-4e98-b621-37cd6e2bab33": {"doc_hash": "ec154efa84d6582461a0640c6a59fd8843c7ae40c507e75618fe00eec51d36f3", "ref_doc_id": "b1ef24fa-97f3-42e0-961d-291e54170218"}, "b1ef24fa-97f3-42e0-961d-291e54170218": {"doc_hash": "782cfe9f2095292a9e843683c7526c27bdff41e0416c860ee7a6ea58f72d8fc6"}, "bfd83eea-695c-4156-b9e0-ed51488f50cd": {"doc_hash": "e52cacd66b3d079958ed96552a0991ee842493562768741a9536ea6ec4210b44", "ref_doc_id": "69dfe709-e348-45f2-98f4-f093395080a7"}, "69dfe709-e348-45f2-98f4-f093395080a7": {"doc_hash": "402ebd4e6354aed5a4aa39c11d781e9178f2907cd130a677a80c1ee1c9cfa188"}, "c52e477a-e629-4d8d-ae02-3acec463f0e5": {"doc_hash": "02f78260afa820cc0ade3d22c74fce9256a0e1f4c0036f8c3a4a03960e063957", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "528d270b-d6b7-458c-aa0c-17cfb1b7493b": {"doc_hash": "0a0a9eb63ebdff10c0ec3824a2cb3413d8263841ba6ba0374b2ca4d2bcf0a453", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "38c05c5c-78a9-41fd-b8c8-cc911b44b392": {"doc_hash": "489d01a731ac7dfc0add8da219278d231759d4376ad21137bc199d1a591fe904", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "3766a672-229d-481b-8e77-f63d9edfe42d": {"doc_hash": "31407b73a6bfe3a0b4021f6a6f425d95319c7974564b6d9c1174cd32824280af", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "88caea78-3b8c-4c50-8e40-be33f06d0a84": {"doc_hash": "89a2e04180d5376b926a8bc7780e70253037dc787981923378172f8d4e6baf47", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "79661545-c9b8-410c-a23c-7b75c28e1847": {"doc_hash": "b396656973c473fa895b968833a2d04ea1fb753fe480ddf0b3fb212655f423eb", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "4118448b-bb8b-4fd6-9f1b-e10f8247536f": {"doc_hash": "65905eb3aad57b805a38908b09374a94576166b143bdd122d31c73aec4615a8e", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "f157ec57-6d4d-4539-a463-eaef48d39eaa": {"doc_hash": "a6496350e6dff9f6fd7a3079c3a69842cb190034b2948e9fc015ccdfb636f224", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "024fedaa-e2e4-4733-80db-1770ee4be916": {"doc_hash": "3a34b1b7989b884420ff919388778673cd90e923371a50c686c6a9ef9870dce9", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "852347b8-c229-42b8-9261-bc9c6037ad24": {"doc_hash": "c032192dafd05dcbf0df051650ff1996e1de9fef55bfa9fc502b182c4b0c29c2", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "7a64fd7d-9b41-4740-a3de-2b277f852653": {"doc_hash": "842fab7c54101550930584379f36124aabd6a735f732fd11d7ff2741c8983aa6", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "a390b91f-efb8-4f77-9649-77a25276cf6b": {"doc_hash": "fdce5f93d66991d1331fb7ac119be54b8fca513f30975e6b4edeb906bf415d4c", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "48499d08-c18e-4ae7-a08e-14c6a8ce5534": {"doc_hash": "a53004908de17deaf99ca233c6d890a15c60253957db101a3dbab9ee6e923b97", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "120557fb-efb3-4afd-a575-fb950b4dde3e": {"doc_hash": "44f541cf7ae635983e318bd1cfef4730b64fc01647ec62455d3a07e020227b82", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "5d85bafc-9d1d-41e2-895a-d18e73e172ae": {"doc_hash": "4a2db50f98380e4456c0c4b2427729944cbc9d4b837ccaf6058d356856e29b22", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "2e61ba59-a7aa-4b65-926a-687ae86861e3": {"doc_hash": "d652295f9ca48154047baea3cb473524d3858f2bf2a457d1baaebe349ae2e08a", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "ca8ed9ab-36c3-4cc9-9200-a44281095748": {"doc_hash": "d6161eda480eb02564074d70154f6c50fe2444661f04342dfbd1cd50e838cfe7", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "83f784f8-1769-4a12-a9fc-e66d75ebd146": {"doc_hash": "fea781077ff161d4453d4d217465258a9ed38af5934cd6c6857d0e43bfa66705", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "d358ea6f-d726-4852-b959-6b6f02b7f626": {"doc_hash": "ea2c43ba546aa06b6c0ed00b9e9dc7b6044ee74cfd4f73f9ea1faf6639f7c012", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "77027437-a678-41be-b475-fb1d8b50057e": {"doc_hash": "05f2d6c53c550da4dfedce8a8ac03900c0028cb501c97b4d781e865c760a67dd", "ref_doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}, "00a8ff61-766b-425a-aa31-182b8d2366e6": {"doc_hash": "4484c8cf03916ab4a1905799e36f2745e453c012ae6a4fdc56aeaeb9cc21bb9b"}, "fa1fcd89-0316-4277-a96a-908337af1bcb": {"doc_hash": "76c3e44af27c645360888412a9e174e9705a284ddcbfb71b2104f94328a887b6", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "54e47b1b-5be0-423e-8358-83c8c815d142": {"doc_hash": "30f57c382cad2bc138825f88dffb71cd480cfba3f82209337aa6bac57b95f9f0", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "795741ac-cedf-4428-8f5e-165bd45b1a62": {"doc_hash": "7376fde9ea755e50ac8c2d8eeaefdb1bf6ef14633362afa6f88d47ab427f34ab", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "83547562-e8ba-4313-93f1-fc33fd2e0cd7": {"doc_hash": "10e4d9667ad200af1261002f26463b676bcff7148eb4d0e37435e32c782b233b", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "a8fddcc6-b502-48a5-957e-099fdc6d5fdc": {"doc_hash": "62acfd6a7dbc3fe5b27dae2529ade5846ba60bdb0b7379da3f6ffb753234116c", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "d158c94d-fd03-4607-b7b2-b817dc6750ac": {"doc_hash": "800e5e4928a9cd38a77b1a58441e7af7d978e9634bcf2d0550545c18e7f232c0", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "89375532-71c7-4ba7-a392-f09aaf08f2be": {"doc_hash": "53852fcbc114d0a6fd2ebc5e1001ff35697b71ec2d4fc92e2f3206f8ce1161d4", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367": {"doc_hash": "34033baae21bc9529481f3f098f59bbb4a3dcc28c3912476234614f1c0552cc1", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "835d2923-71e0-4163-893a-caabe716e546": {"doc_hash": "1fdaf633ea2c02ad419e2d2aa991ddd25cf20fdf5c25b464a403d5cdb692a612", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "ca32725c-6115-49db-913c-df3b07fa6beb": {"doc_hash": "e3950ba71d7da21ec97906895af109df83a7e2e9c4d6680af8e4ed585deb5a92", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "578241bd-9f23-4439-a655-d30648805018": {"doc_hash": "ebfb4da69be4cd34fd7e4498bec3d9be3284796e050a42b02f8d9d4a88105f3a", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "e14f6cb9-9e6c-4472-abf0-450c9619ec9f": {"doc_hash": "a49111566613ceccc038a55e516f3fd8769cedbfbd16076352eccd0bc3cdd1c5", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10": {"doc_hash": "978abf2736fa531618e5a983cb21e4b69a602ac75d0cbc0b688ed5860b29549b", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "2bd791d3-6858-47f9-865f-388dac32fac6": {"doc_hash": "54e4f25a6f715035eefce13c06889f311e743d0a2daeace7e8bf3154803f9ce3", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef": {"doc_hash": "52465464f0bddd4642c22bbda64a733586f8340f383b4495cb08007a0a3a535b", "ref_doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}, "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8": {"doc_hash": "b5db8b39d3696310b6d8df6fa59b76d467d2b642fb7d40400ba56e291b06b816"}, "101abeec-50d2-415c-bd60-6b01f5634c97": {"doc_hash": "7411edc15bd0d8d570f7cd497c424ba8f2c96e468695ccfd3e6815cf1b2bd081", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "a8b43d44-7ec4-40ac-a16a-3befd53e8c65": {"doc_hash": "8d25860137579e8f3a57709e42f42ec0f05c05b6124ed958aa2ef1aac155d9e0", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "8273a425-c99f-49b4-9db3-121013f2933d": {"doc_hash": "86c42231e1fc55d8d27c4ff71b47f9803f4076b9e528bda8f19ce6240dc83dea", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "b88f77c1-2044-4a9f-b790-573fc3c5c12b": {"doc_hash": "3f298ff3eee7f7e9927ac6636348dafbe777250a6fbf277ef901a8d84698308e", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "87039a66-6d37-483a-bff7-4432cc531908": {"doc_hash": "125c6770e23bca4377cb3dac926b02ed708aa3537f079fe36accb16dbd3d746e", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "d2e036ec-ad7f-4f9c-919f-08e95b238f42": {"doc_hash": "5fed1539d01375ac7bd74057b3587020464206c8a0f55183d2a064c899b4d0fe", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "476681b8-7b69-4a34-a6d2-809fc653b8bf": {"doc_hash": "85afad0428a2c2b9be5d3c71ee8fa159ed67a3470d803ee1853995f307b4c157", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "b6bac391-46af-49b8-ac76-55b9ea0a3f10": {"doc_hash": "58c352aaecb8073dbe9bb55d4104f698f7ca5f435a357b398aec10eccec4b58c", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "4e342ed1-90d4-4470-95d3-1ca6c00677d9": {"doc_hash": "f0083c92d63193d084f5285c5428714b8232dd29ef3a233e991624177d988f55", "ref_doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}, "67a8ab21-d0a6-4af5-a14e-ba8258af56fe": {"doc_hash": "84da4661822746ca0d210a81181a1f5da2ea3b3b14cde1252f704fbf2939ccdf"}, "71c4a3bc-6635-44e1-80a1-0e8deef0d767": {"doc_hash": "2f968529fdcb37420f9551c0099ea3621990ee4e40e4a3a98b2cf18139dd7b94", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "2db9c2b8-f85c-463d-9f24-ebd8e9727fd5": {"doc_hash": "6e5368dfd9b620422f9a2bcf41a29f612800b468d60542dc035700c1f9d08dcd", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "9c6d0c05-1650-4b0e-9a43-a2e793804053": {"doc_hash": "f8dcd5f11640c304fd56e68506f31f865353382097bd2f3d7c2e0474cea740ad", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "74d6bdca-a349-435b-9efe-0beaeed635a1": {"doc_hash": "c976e29d6c2aacedf8446254f7739a7b1ca8ad9bb9d87982c92a074ca2a1c596", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "a3298b90-49cf-4b41-a0d9-17cc2a67baca": {"doc_hash": "f8e14e50853f143e3bd783c500cbd11010b7c017c10fbe2743c8549c86d5032f", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "1e4b3a13-4e82-4e88-8799-8d02597cd960": {"doc_hash": "bcba13aa178d4fcc83d61f8217f39c0532a28391f45f812bfb53613c46968949", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "d72266a3-fc2b-4dc5-9db2-4f7278b30167": {"doc_hash": "ffe53fdd9b58c9b6142ccfc4d85c5ac719fd1e4b84432f1d1964ba78b8b5e363", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "797816ac-6fc2-4453-b294-c5da10cbf4ab": {"doc_hash": "7c1b6f06d8cb03688a451e248ec49223d570d9250f18c4b070125dfcdf484133", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "bca215d8-8f5d-4550-bee2-ca746b34b1c7": {"doc_hash": "af10caa4fdb999bb5d46b65fd41f4c185bb91876415c675b49ec0b7aae8c253c", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "2af8640e-5a53-47c2-a938-9f9695cd7c76": {"doc_hash": "84b178423fe2e79bb17c61155c8efafd19b7f014256d421cd1d3b36ffb954717", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "f8bf4db5-78de-4d72-a5e3-33c83fc8c734": {"doc_hash": "675fd6e0df11d0090e466910c8f3cdbfa423bf9db2b25bf306b4ce27bcc1c8d9", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "44888967-ba3f-442c-9d7b-802d7ca43e44": {"doc_hash": "82fbc8778bb9a0e62e77a24980e6b542d881f8fb0b09149395bc55a95e1515e1", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "dc28745b-ce90-456e-83b0-3718ac471b7f": {"doc_hash": "b5af45e9e2b595762af85b7de78f1529be531ff2f494b79765076f35eec98cf6", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "14eda487-be69-46a6-8dd9-740d35cc7fe3": {"doc_hash": "7a74df17335c95b8b050cc326e430199370275d363727ed1ec235f3a4c3bac48", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "6e741f83-1a55-4964-a39a-1735a998cd6d": {"doc_hash": "81d6f1bd8a030f73ff1b71c9fcea3025b1c1e4435a7eb51ecdf50207389f0515", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "40a841c0-27b9-4105-8dc6-3454da3e3bd8": {"doc_hash": "df384637610a0947a4ac62b82b8c28560579b4e70d1fe2bf22ed71d866749227", "ref_doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}, "b95327bd-847b-4a2b-8191-09ae7e15d91b": {"doc_hash": "2c17479915f2f4a43edc26a329ca98eee139d78aca441809b8ddbc8c030c7e38"}, "0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a": {"doc_hash": "4d8a5039f1ed6cbf8bd48baf66aca2dff60f627c657933c688d8d70cd8a0e520", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "4ffb13a4-79e2-4307-ae24-d806775763c3": {"doc_hash": "157228bcc5ad667038723a25d2c147a4471f522cd316216a66b001862c4bc675", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "6be1f85e-83be-4483-8b86-92c8725356a9": {"doc_hash": "d839d5ddcc96d9afd03287aec826504ea81035d635828a34d0020cc294850a35", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "c271474a-b01e-4dde-806e-7f88aea2f469": {"doc_hash": "b5df174732e8838de03677d1e1ef271caba80757fe8641a8d7243d5fd71bd162", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "7c252836-73d8-4243-8506-264c8086427a": {"doc_hash": "15dce20f2c83b34b86114aea68bea86cb76c43e0c7e2bc2bc086f34e8250a5ce", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "72335e90-0cfc-416a-bc36-58b99175d085": {"doc_hash": "6b753c1eefd1566afa98af409ae39e72fcbeeb9914e83e17c3c8b63c1672a982", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "09bc1af2-b295-43b7-91c8-008573646a0d": {"doc_hash": "5b72baf8bcb06d24af183c70d81bc299df0b782ecf6b96eb2475ef290b69cc50", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "468e2ecf-5ca8-4831-a045-858601970464": {"doc_hash": "ab34a7cf1594b91af8c285972253a09936655e3db4a60385c424e3606d58b6af", "ref_doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}, "e4df6583-ff3d-44e3-9497-4f8634359a67": {"doc_hash": "b3c3f502a1764aaa712bccd4a072c71515a94b9130de5cb262e7f7883f782ed6"}, "c6e72421-0c17-4c05-85ce-2010d1df2cea": {"doc_hash": "83934c98e2e0fa2df6a53e96f215621b700a92548c6c3e9bb295ec8ee4d377b0", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "603ea3c1-06dc-4f3b-944a-9c6cc9673b9d": {"doc_hash": "961779064ad21ef3ca2fd54f3b8e9a92416649729790e7b7331bab2cfa21718d", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "a0fc13ea-7924-4e50-95e1-f43f0559d329": {"doc_hash": "789f3223e6e46b32012ac95a1728aa2b9be79245287c9f9e5bdf01f91d51997e", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "b1f955b6-bde3-4187-b7ec-0ccca333c31b": {"doc_hash": "3ea62dea37699a96956b521e05f936d8eb55395d88690eefbd178aacbdd104a6", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "5b57b692-0186-4785-9cda-71e403686f43": {"doc_hash": "869f4c33f52f0c1bb5510a8825a2487b69d4a6022105bbb2bb821ec6638b4133", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "8086fd1e-b2ec-4070-975c-c2361133f6a4": {"doc_hash": "e76c5d98599a023a2223a240dbd5065d0cad8dce08d9cd269a786a6800c70592", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111": {"doc_hash": "3f62e18bbdcc62e790e93048b4e193537633845add096cbd39de26f611df8b26", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "bc11dbf0-462f-4bef-b531-78c07e33d133": {"doc_hash": "20e2519f881d8e1064ebb32ebf87ef072d9cc5570793edf9c28e464b5e736d99", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "0c284300-d9f9-441d-b582-6e6795221c4e": {"doc_hash": "d5a81e6a9fcc6767faae819c3ff3e37cd803656b300ca89157b4789a05eea627", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "1e759376-2456-49fa-a154-1a5e19aad3e9": {"doc_hash": "76de120a5e012548d8c1fd74801e9e9caad973e57765aa5d81b6d0b522ff2ebf", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "cf77eaa3-eda1-41a1-84ee-75ca0759b985": {"doc_hash": "4e74641a6e77a69761c54229e7b65af1a3a01a950f0511d192ce6779c2da3d63", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "5622feb7-e8d7-436c-b3da-101d0b4f4f06": {"doc_hash": "bdf5de8c6dfb83da44831757447429f3a9eaebfd979bc4fbe600a52be7c35e81", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "ff3e9c00-eb71-4900-9413-b6deada6e561": {"doc_hash": "0a9c50b3c75c464abb3fc88b5b539759ebd8d9d9bac1530730d131ef1fc0e2fb", "ref_doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}, "969c4445-d2dd-42b9-a7a2-12b6f64e1700": {"doc_hash": "b3adc2a1ab5e3da948baab15d3449f56fd993703b576da5ab7f04d268f293bb4"}, "32da5209-b7d2-4eb3-8d14-ef013b8d4938": {"doc_hash": "7adcf5857543a7ef972bb4df8de54f47bca7c343265c37c498a861943f83c876", "ref_doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1": {"doc_hash": "084bc82d83027f7ce83998b95b6b62fc237a7d62cc2cd1c4c5b411b417fe45fe", "ref_doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "8847a2eb-c347-4971-94f1-45a7f1688aac": {"doc_hash": "827d83689f32c53615e4d764a5ca96d1b191397a85ad5fed5210fe5e80efa997", "ref_doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "9c608428-da65-4cb9-bb75-fbc5c66ccd01": {"doc_hash": "88634c83876f2bf004c51edabbe4d8f1e4b7cffa015e9dbdbab2351023b887b9", "ref_doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "e3f05e59-fcfb-46c1-8e98-1e1783599004": {"doc_hash": "b94041ccd6f9ea8cecb791f73b99fb55b4e0f812b1ebfb5193aaf48235105f83", "ref_doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}, "5ed8c97a-1c6c-4afb-b66d-efdd481672be": {"doc_hash": "9f00ef0cd92cdc37b15d3c18b87090808cdec56e7142dfc31604b063370431ba"}, "f24a6dc4-2427-4dd3-9bb8-61fe621a59cb": {"doc_hash": "299f146ae3ad1b00f87cdb9c7ed94a029d7512674f8efdd380f0fa8c7c3f3d7b", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "df0cb8c7-a553-454b-ba68-82ec87b30299": {"doc_hash": "c8a6042f70c5da68ceab1fc20bce02a413f12def583ea1a591819bc216f61efb", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "413faf23-1ff4-4f8e-a48b-d9509c3d23ae": {"doc_hash": "bccb94968e8dcf617476362fbaf44ce68f36bcb1131cbd764d794a0df94933f5", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2": {"doc_hash": "a702d359d36a1e5917105a9e044c88bd28520a67aeddc631cebb29bef3c1b6ca", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "b9707183-c73e-4aee-8864-fee85b148ec9": {"doc_hash": "2b205092467c1ef9df24f984af27d297aa5ac6f8019d2c143a2f67fa7d7dffda", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "90e148e7-14d9-4881-861d-0786b910c721": {"doc_hash": "5dca85609cb96aed433b1b962275e03b43d4ee7583c4345b904bd649e25f8134", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "c85b5a7b-c07c-456c-b67e-041c52a49a9c": {"doc_hash": "5080ed4315173fddd9c014f727d36f766efd6b3cccfbf6fb25d0ddc89c847dcf", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "8fa24c22-6fbd-4ab5-a8df-d0043157c950": {"doc_hash": "d029e425b79140f42085ebf942dabbb49db3e1ebc31aacaf69970bba9bbd39d9", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "d7f0868b-795a-4340-8ac3-625b21cf4b6f": {"doc_hash": "ccf9f753bc3935210a66e31ebffed716844d689adc6c881d08c8473b38c3ba63", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "7c5c4726-bc4f-48d9-9331-ad444749d3ae": {"doc_hash": "04ae7163c72c4938ebec2c1307d6d4ab798c907d15d7f61d181a24e45702ca84", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "aec64413-f360-4c95-891e-294655fa24f5": {"doc_hash": "a8749d9cbed98e6fb5eb8bfa0d70820b7a9b1011aea46a63306bae466ea83232", "ref_doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}, "c1f6107a-8ecb-45d2-bf5d-e5768bef3455": {"doc_hash": "b546b431119809e4d549aa43edd00b90498c98467e5c7cae1ea5f91578692de8"}, "47be1383-b4c3-4b46-b1bb-612f115cb5cd": {"doc_hash": "c1f898de4d34f2aca0e856db29fc849b3df20423e5a762819f659de907913e00", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "46cb1d52-0f0b-4b17-8e1f-3432aae4826c": {"doc_hash": "0ed019a61a969dd225a7dfc44580580ba02320bd86af4986565128c266fe4342", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "778b8bd0-445d-4c66-8804-9c1e37888ea4": {"doc_hash": "fde14e3c37db5eb898835853897f71d7146ad61734dd69a4c09617883221aced", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "8acd8464-081a-4d21-a2d8-811bc8a41922": {"doc_hash": "b24f546ed7b09e7099f7ffc7fd312c923ba29f8bdf91c1c0e0954750714d5b0e", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "c895e787-7815-4877-a7df-afab66f0636a": {"doc_hash": "7b7b0ad58124d3185e6b052afa7479563d0297d93785e1d40c8d3db9f6197e9b", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "296c8197-079b-4c2d-b812-f74780c73c32": {"doc_hash": "b3431f39305ad838bf3265cce86777e4406bd3654c77037d8d1f5c185c2984d1", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "a80953f0-5fd7-434d-8fc0-cfd43266c141": {"doc_hash": "423c5becb47d1b8e58be98d9873dd5f498b7c535c9c2aa46915bdd148cd2a713", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "2a7e0776-0b2c-48ed-a2cc-258375452620": {"doc_hash": "144fe5b59ef441c688594ee29a3ef25df0aeb10d5e0088c86626bd585809133c", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "faa27de2-ed4c-48b4-8317-fc0e869a4a36": {"doc_hash": "47f0f153b061c3e5dd36a40062e5230982b86dfdbe6c054ef7747f87b203fa64", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "463072b0-0ada-437e-bb65-bf0976ef72b3": {"doc_hash": "1b0f9ac013c5921c626da62eddb015b1d59fed9d6397dfb692804f29895cf702", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "4e248107-2035-4199-bc08-c74b49d5fcc6": {"doc_hash": "b2e87703a576cb5025c86c021e61bc3ac39df29a311a53f52fe8ddf0003ef12b", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "cfdfad83-3486-47fc-9d06-18e966e50b7c": {"doc_hash": "739aa80fbb3f30c8a3f26c7d953eea945383b13d8bdbe6e3f2f913d565777f2f", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "50e9c42c-bb86-4291-a2a7-bd60a71a466e": {"doc_hash": "9a042f5439b02e92fe6dbc1fcb24691649030dd63f5e49ae5b995bafb81aa20d", "ref_doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}, "b85e2633-a0dd-4abd-8398-c44410232847": {"doc_hash": "6b783116217c332cf8a6fb48ea4c0b1ba9084a5691beee7eb3f0bbd91f3b83b5"}, "5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd": {"doc_hash": "f58b80df674ffadaeedc902ee5e325938b656cff18f5c66ad4da4011f1e2d34a", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "ff25c099-aa59-464c-a08c-fdb3791ab5dd": {"doc_hash": "bc817c10f349d28c6967092ea63de75380786f59f481feef4f2ef326c8d63b8a", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "ea4724d4-0293-4e1e-a176-0bea52a3e5f3": {"doc_hash": "7434b46d6f4f0b6e5140c0bae14452c940d48937055a6b05faac156db4d8be11", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "f9cc2420-88fe-404c-b7dc-a64dc68fa7ec": {"doc_hash": "8e0bfb2b085e8a9db71ba4d6699c894f001c986c429ad7846c64b8822c53ba03", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "860c4228-3dfe-4204-8555-d3f93f30e982": {"doc_hash": "56d29f02341b564b00d3a685520266feccbefb85090b7a670128d3d6b8fb37e6", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "6a65d6cc-b8ef-4b49-a1b9-06501f385281": {"doc_hash": "4d0e167d71da749cb2db24953bf46cdb4af819afd87eb2bc7dfeeea658ec0345", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "deb4207f-47b8-4363-ac6c-c00cf633e9a3": {"doc_hash": "3ae0818aa5ff701096fa6277e98097174dc6a23b185f289b0dbb2267de689e54", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "70207f0b-28b6-4000-9af1-a9751ec388a1": {"doc_hash": "50678376707b5cdfd4690c9239d10b6615cbb80f5876bbf85bc48031aa4dadb8", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "35b30ee3-83d7-4c50-a533-590b75092687": {"doc_hash": "0f1754efe777306273a97e08fbbb26ac925766a1d97987f2999a43a89fdc8664", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "b74e5b1c-365c-4a04-b58e-ca8df2f2a812": {"doc_hash": "036a5e5453361fc2d6e7e901e87b0f7848037464f9a2110aa9353c6d8303c604", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "dac79022-37f6-466c-99fe-255aa9a4aff6": {"doc_hash": "5facd7e1c475fcb6307734838a08efafed9e44a6723edcf7d8f21d45eafe0631", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "a684faf2-d6e7-4094-a1f5-3073e3010969": {"doc_hash": "676dcae8e012e17905d0bc217a4c912cc91ee8fe4e3bbe85e6b7986ef771db8d", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5": {"doc_hash": "bb67ac6a4c26dc6dd2873f827794219820c1af6488be8638e341807f9f69b7df", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "09d878c5-7b5f-43df-b2fc-17349c286eb7": {"doc_hash": "e6ad553dff83d0bba8b060dc67683698c54ba914d2925fc130f0e43a17844c1a", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "e369201a-c028-456e-b33f-5a823cd04c4b": {"doc_hash": "ba2e4f545fc0da42c7de6141d39b31f669643c56e6e13ae1283184a9d6d49a7c", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "0862dba7-c437-419d-a67c-a7a19278ee37": {"doc_hash": "136842cf6b999bce94a1b933fcae447b93d4d15c0c594e9a53b78c79a4b549f3", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "8a6a3656-e862-4e1e-9566-98904db6b57b": {"doc_hash": "a35f429fd01aba5766690419c620c7b7aa0ea52f7847120c89e0157bd62d8b2f", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "a0f8d230-720d-442f-ae36-25a8a54cfa97": {"doc_hash": "d2435dc634df89c741d8a23bded79045472186c1378b8daa06fe82ba31b8ed41", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "058fd3d4-efa5-4488-a1c3-74bf09781e86": {"doc_hash": "afd5fa490c17f81817de559bf656fa579dd2fff374c5b43439872a42a89b3d5a", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "9f902caa-3c8a-4c05-b46c-1e1f1df83834": {"doc_hash": "028eb7c4d1e5efe269e9618bae80a9f78f7116ac1b5af0193e602e5fc4a7fec3", "ref_doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}, "2be49d31-8552-4227-ab21-3c4a73e2771f": {"doc_hash": "882d48ce231bcbdd05e6b9ea90d70c63c42299f821887c8bc0acb6c8a125dc79"}, "15997e69-4974-4fe1-9800-c562eec9b258": {"doc_hash": "9780836a5389814b0ac0e577d48832f9f012d129e2d96fca90f526b22905ca1a", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "76601a4c-5955-4f68-8fe0-2347f76e0d83": {"doc_hash": "6a3a75cfcd3e247a9635d534e5232b52ffe32724a4f93984c7099ca1d8d9c646", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "78a03d23-9f82-4414-be59-a73782dee41c": {"doc_hash": "82ea7697092c3e679536bec56eed4201e55f8677640dba58ab256ef3fd72492f", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "97d1c507-fc21-47f4-9eb4-f7321a4c0a77": {"doc_hash": "c4be4fe7a9d755b625126fa4123295fff07572292119cae88012ab980e921691", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "b4423dab-675c-4491-9cea-c5384fd18e2b": {"doc_hash": "1a9cb1d10f977e528ed4252be6856e3184594bd17e7da2d7ab3046ff17a58a0f", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "5c8c1f58-f167-4b77-aa0e-61d47a8039d7": {"doc_hash": "6fb214cd98e7d026d0a2fba0b3760c89d45a3995283089ee3298298c5e90b819", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "7e34500c-dbfa-4e84-8d64-3d1163dd5c48": {"doc_hash": "f0d66ca9cf9882a06dd3a8362bc1b533e39f0ef91a3ece3684b8ae247bbb390c", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "a8f88646-e5af-4381-8a33-f2d66d538ffd": {"doc_hash": "9e730b48f8e9974e1c23e33fd6ccddf1bd9df4d7a24bbd0187656cba973de93c", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "2604e495-b5e9-41b6-bcac-c29ffed09f4c": {"doc_hash": "72cd57c042bad1442faf9b1320cf5adf173a9811c663ce7f3bff88be648dfa1b", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "8ab04d40-d2ca-4185-9bab-b4c745a49c48": {"doc_hash": "be3a2ba52f8e1555f142939de9b8713ccbad45245917b2a2d0a6d2f83937e84a", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "5285e0af-31bb-4297-9b85-74f17d7939e9": {"doc_hash": "165979e70a4def2b1a562b3600fa5e5dc2fcbcbdc0ebe0f683a888e01cf1fee5", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "8fbe5691-8155-4aee-a535-dfeb2a06cf9b": {"doc_hash": "3d2fc8b68e6499147b4eb7489bf5af1633b910b352979f5908f2ddc7f0ef3532", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "032cec94-aeb3-436e-a40f-60f21acda04f": {"doc_hash": "534d914a71474b2193d9320cf2d810e26cd9368d1d08942b7abe7b0ae573aacc", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "6b7d8b5b-95aa-4bb5-bc55-174503dd4e62": {"doc_hash": "b0f90c94587148745035d00ca265d6bdeebfa31ffeba88047e635c50ab5db2cf", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "274dcbca-d18d-4650-a190-c0911bb99942": {"doc_hash": "6395d06f6d001b793eaaff25401c00a71feea2641bd75ebb49336588d4b15cb1", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "4dea95ae-199c-4134-af0a-d58ebfff00f9": {"doc_hash": "1ed7de659f41c9665f2faad34f9c65bb9db7dc2b847f19825f2eb82b879fa2c0", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "ebec4eac-8275-4125-8b61-3c7cbd201d55": {"doc_hash": "ce44801f0ccc4757d2aba00d3f8336754f33bf609d0fed9b03815d59861821eb", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "50b32ea2-6fc6-481c-865a-980bec925996": {"doc_hash": "60c483adf9d5e49f88488ebb7c6480573d49e4d7f75195e6f2b18e2fdd72b147", "ref_doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}, "7c666861-61bc-4a7d-83a3-c9da6eafba87": {"doc_hash": "fee92f8cac5926523386a4b40f5ca7fb16e679efeb17761b0b39de4bd28b6c7c"}, "f2cbf011-bc22-410f-b36e-05f7c6edc459": {"doc_hash": "75a978c1fe9930d4d0a18cc55db59bff3924cd266c32fd62c327f30562134fb9", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785": {"doc_hash": "0d7faac7e4d8b355690934a1fe45be0de87a674b75361b3b00b0f57a428eb540", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "1c75b713-6f92-4ec8-9218-3bb3e58c4e03": {"doc_hash": "438bc7899d1d8c31b3e6ecb7e5aa37fe52ace425b2bea667f06025ac151ca933", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "ccc440cc-471f-40a5-a4b4-2fe156a969fc": {"doc_hash": "e64f141b7d0b5c9a431f7e3c000dbb2db897c952c4d7ff2c249569d4bc862dd9", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "33b8bf66-a163-4af4-8f34-974afdb37833": {"doc_hash": "7677e7410873480fc82ceac96b37f305c1c6b239fdc387adf828ceac046dfd31", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "364f57dc-fe18-47a9-816d-ea654a4b2b7c": {"doc_hash": "cdae1ddf4860b6dc1d13bafd3edc84d7020cd6f96ef7e67a3bee603c60e3b38e", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7": {"doc_hash": "21167a34a88d035df091ca4ccd67a8f2ec1f4b76d0b59fc2962ef98b0f7be3c6", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "d42c8120-3255-4b13-83d4-eb2cad0d73c0": {"doc_hash": "43f8416631906832793478bc417a721277ddadd4d695d5e7fb3cc068930f4caf", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "0a61de61-47dd-42cd-94be-4467bdc87028": {"doc_hash": "81d865b4556b59012dfd43daac2f32862320e2870b53203393e9486fca0a932d", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "a11f6bc2-d45c-4302-9f93-15f941acefa1": {"doc_hash": "2b3abf47ee3cd5dc38e32248c644fccd7b4a72464fe809b5dde7f7640bd34f01", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "b20c38b6-59e4-43a9-9b10-8ef6127ecb04": {"doc_hash": "b6f36ca627cf7e84694d347087ca88e1082e539c090f5905519a74845c09f556", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "ed17db20-b032-4c05-a08d-760554d40e33": {"doc_hash": "aee2534fcd883105310fbe50825173ca78290332d7f0b40498f28d8a76625d53", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "6e13df71-09d7-4d1e-9790-ff7ffdf84823": {"doc_hash": "b5d3bca70a9e6331dfad8754bf5b27fa31b5663100f8d565ccb96c9632d38698", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "d51236fd-2a0c-4de1-b447-a5aca9c8206b": {"doc_hash": "3de3bc72eef775cb508526b721b02127b55c8cb1daef6afcbb65d4cab173bfe6", "ref_doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}, "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144": {"doc_hash": "bde32099cec2ca61344ea8333f85ae482c3902b5f973382803956d221f46723d"}, "464b1f97-e2e7-4c08-831e-26f486e2c433": {"doc_hash": "02e28f5e73af5bcae466349c7a3759b42a185cae137065ff39cf4e4d6602ddb6", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "58ab7dd7-68b1-4ed3-b40f-38b076c70908": {"doc_hash": "c47c8e3498b239ec055ed47a301781f20fac29ae4222978c600da940fed1c40f", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "ae0078e0-7d33-47a4-b481-d98e71589dce": {"doc_hash": "e26ac95ac00334f5fa658eda6ad5e78c411489022f35196eb87cd7e229f8fd66", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "3f6a626d-e8cb-4481-a77f-848c263aa0a7": {"doc_hash": "01888d24ffa10098021a41d22f8a35849376ef6396572f08ced8df8a70d493de", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "412c18f5-2adf-4945-acb2-777ae502bdc3": {"doc_hash": "600098c8ba65dbbae615f7ec47be29e85678f2fb4ae0fc7650b5f0a775fa9172", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "ef4cefad-0d6b-47c8-9cb9-039fb64b5457": {"doc_hash": "d6a9ecdead0ca450c57d8e12e759330c3d898abb78064c83144b3038532ec54b", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "5ccf1886-586d-469b-9c5d-0edcc27c58c9": {"doc_hash": "9c2fe9cc57cc9bf5f9bc82eb1b84e210ae00cc3c69a8a7801cfe03de8958e830", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "fb5057d6-151f-45f4-94e3-0b72ee4db0b1": {"doc_hash": "c23ef482206981ec3502af07f886465ee2c9a08989d84a7f46d4bcf2ca8bf23f", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "6876f76e-e347-4f20-ac56-af1923c786a1": {"doc_hash": "79086401a1a120cb2df81faa95cf6497d5ba625db795490e0e86382f804d8ae3", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "d1479bee-44ae-4a44-93f5-f3792b1cd94a": {"doc_hash": "e51ab9174588d00a7bf07d9f658e4ef17da91ce149615531edf4b2ab24a7f277", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "405fb950-67ab-482b-9e74-48979480e5c4": {"doc_hash": "45d403fca5ad4e471cfc803b831f9bc5eddd6404dc43d19d1cb5d2394953308e", "ref_doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}, "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a": {"doc_hash": "4408c3ea2736d04b9f0157e0f8cf08b07b0e5f390769dde4871d48b12a99e6f0"}, "8d404377-1b77-4704-b523-3dcbd4c8b233": {"doc_hash": "562a33ef462b973382b86da2c3b9afa107d234a40a3d9ef53c1d566c73a3955a", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "4d66d061-fd5a-497c-ba1e-a14318f7f516": {"doc_hash": "0aea4f762993e9a5a1c5ae51aec093cb9d9852ce941baef776bc4904f426018b", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e": {"doc_hash": "b699dfd27cdc502561eaa3a841173f9e5357e1af0a6a82e4b08ce8205eaff1a4", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "71b50d05-a9dd-4398-b6af-ea4c37803aef": {"doc_hash": "cd1dee0bdfeb4c43bcf359369a42f75bfa334e14141515335cb30c506360aa53", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "60b16a6e-e240-4685-8033-5110a9e2662e": {"doc_hash": "a52a10bda3ba98a08d7816270359e84c330ca31e90a3fdcf26426fcebd44a625", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "5293cdfc-2093-4688-848c-c294e9d766ea": {"doc_hash": "07e6bf2415889dfeb6ec3f0ced3aed22d366912b4168f3708a208423ed0c64ae", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "c71e7e12-cedf-4542-b14b-231a8ddcb334": {"doc_hash": "93f85d829f378896e743a0dfdc28bd4ece3a65ef67bf7e450e253aa4a9b7a68f", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "c575058c-205e-4995-955e-14e1968bfa57": {"doc_hash": "8336f2d91ebe482aca5dfd71ca672c566aff1d6f3bd85288efa7c6ca4b5e854b", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "d72190e5-f2aa-44a6-b790-d25e61ac052d": {"doc_hash": "ae01cb59e21d08bab10876ac87e1f023155149bbbeb3bd06be76842f326773a3", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "b4288da3-3532-4958-8cbb-5f314e568859": {"doc_hash": "3bae29179ac14484b7b4b74c716b207d61c59529b3d1632390f7dce7f2074c6b", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "d1691c76-81d3-42d2-8b4b-13216c91266d": {"doc_hash": "bdf08961c8ec71eac50612989ba2a674b2347b63bbc96137fffd868c6aff9bd4", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "81ec9bf4-9a1f-4c66-ab51-9c83014d037b": {"doc_hash": "ac6acf763f4f39eedc025fa21ba2d3c555c1aed2df8672105d501c2ffeb5e1c3", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "480985cf-845c-4498-9784-3795b988ffbe": {"doc_hash": "9ae27bf91081f5b8bc5fc437e7d28b1227e30cd2c6581185eafc067b825bc7ff", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "8c831ae1-636c-4638-a199-e71f19d1a116": {"doc_hash": "1ec582358184bed81eedaa8881024f5f857849129c66c11419a8af1495c7f542", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "b3304b34-b04b-4c3d-bef5-a595f990cd6a": {"doc_hash": "0ab28035efc3eab1f49937d0f78b77408b09a199c55174a1dcb4986250290292", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "35050b70-c5a7-48cf-b9e2-650bd0ae7363": {"doc_hash": "28526ac118cf0c9f62bca70f5ee4a78abb2d67025506741d9f475114d83beba3", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "c4ed859d-65f6-4952-9136-e2168eaa364b": {"doc_hash": "0257a5fb9bf94d42110711f37ffe5d53aee71921ff4fa1413607ac0efb21e59a", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "3ee50f81-fa6a-4edb-847c-6ca85593d6a1": {"doc_hash": "c5ed17e38d5d3aa121d4fcd4721cf1d2c2fc13774516a80ff454d7fa54f970a1", "ref_doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}, "502b9490-cdda-420f-a8bb-6e31ce16b38f": {"doc_hash": "886830f640f7bcbf3dad0d623bcd9b2eca67d9ffd0d259d5ec6d58478f16a3c0"}, "280c0e76-41c0-4264-8a9c-9da2abc3c6ec": {"doc_hash": "44c633a033b7b07f52b20d8ae9a8ff8138e76cfe92211fd0b89aeed37d904169", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "ca6cb905-f47c-401a-bf43-e3a31a4f55da": {"doc_hash": "ebcd4c2681c6325acee93ca62294187c4eff023b761b1c7499edbba2a17ec790", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef": {"doc_hash": "57f9e2bbfb139c0ea695eb7908399eae7b7a8c740df653903cf16c6ab1fbb322", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "d64e91df-5c26-4967-b652-9ae074915b33": {"doc_hash": "3320e932b0e9fe4cb116d0604b294e232a50e12deff99bcf81b904713872081d", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "6b49d114-f4f4-485d-b910-70d6d6180da0": {"doc_hash": "87032d558930ca6e89e8e2dbb7c5cb884b7fe4f5d2146d0c3f750938197a3746", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "44a95309-3132-4d05-80d1-c46a5678b3dc": {"doc_hash": "2cba5a4a776ca48238eca3669733a2384bf6df4e3e736cf28eae2f9773a089e8", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "1fef1573-f066-4242-a6eb-2564da31ff53": {"doc_hash": "ce5c25e2349a0efa0196194b6e6dc82d44e7a0edf3eeba10375206e660042f83", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "ad7f3325-40a7-4edc-849c-1cf0a687bd08": {"doc_hash": "9699a6a598f96ab093c310648ca863a620bfeb32177118689b5451ffa0f1d03b", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "87a116ae-c397-4230-8e39-fae765e6d4dd": {"doc_hash": "b9f0c4f8e8077386c877d98ea276d1bf5cbba0a2066e12f7e83558f0fd2a2827", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "d343ff63-7653-4429-a4f9-d48a41df1b27": {"doc_hash": "b0e13b58a1b8d468669389534b6741b56c7c8ee6ed7b844ddb770c90c640aaca", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "8390024f-9a10-4c45-8477-8f43e6cc772d": {"doc_hash": "073a17614bc20e3d0ad5b18da82547fdc2674b15b177e11363f5c799c0240e37", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "a172593c-f4f9-4d7b-b0ab-e683c8f21c70": {"doc_hash": "d3c913b33b90c6da152d852667db028fd951ef31371474b91eec78bf80ab006c", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "2a580198-957b-4937-9cbc-9c634ba3c008": {"doc_hash": "96eb95d71c74a4c23faa3df6baf72e1873627267a04edc4bcb64ab59bc64d723", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "e138bd74-d5de-4d81-9ef5-5c4c15f03829": {"doc_hash": "c1d0f567440f86c4ae9bbf2e7ec431e63365842abbccbc537ad3cfc5b4e01744", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "7d06288f-71e6-4cb6-a44f-6c4a982fc775": {"doc_hash": "a5b4b7994e63632686e815edc5300dc227d5506a4bb9681a2bb059941457611f", "ref_doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}, "4611b91d-64b2-439e-af0e-f2cc8face9e5": {"doc_hash": "855afab4f70cc3bf7f0b8ef9509c83093546b444f828a12ed87f8c5875e80c9d"}, "87cdb9f9-6443-4de6-805e-60fa79892b8c": {"doc_hash": "de766231e5d2f472534f8fbfaa2651a906da18b43f7faaa45ab1cbf35838b009", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "5b089c73-d94f-4170-9d23-00175b148dff": {"doc_hash": "dc7e2ed9ba5e642ef0706bc01de70fd8e2e5748ce68ed9191324aaafc87d058c", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "2bedf45a-a532-4f34-af89-5e54ebbb3360": {"doc_hash": "b24ff48429e1563cc2602d2fe0953863932bc418c559fbf457d1d4b146a0ab90", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "c4a882e3-5baf-45de-a850-58acb66aaf09": {"doc_hash": "a511034d0ce65a6b4234914925c60d3943452618f2665152447bf6810a0c280c", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "efa844fa-c6b3-49df-bf77-56953f9df462": {"doc_hash": "376b6cf67d92c8672c1f17409e23995a3c63c9548f654bee1eebf167e67ca63a", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "79183a94-0bfd-4e26-b2ac-01b4844777d6": {"doc_hash": "ac67a01513aa6b04a79587473a54bba3daa5d6173c8d596b09ca81a9b200de2d", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "b90b3dfd-a42f-4419-b97f-f89f1c08ab54": {"doc_hash": "acec8e64c5703579df84193925f644273222c43a052b52a6cfd1b3436a2f903d", "ref_doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}, "d6c01188-7f8d-4980-8314-4ed1d637bb69": {"doc_hash": "c44a222b03b0a13cabbeb2d2c2afb58d8c4f9bdf94ae578bf28b53470b01b3b1"}, "4e3e7b84-0d91-4cf7-b805-b232c8b649ba": {"doc_hash": "8f32526d1a72129d8e73c550f89378cae51b0e5a9b9c4f8f51ef0de510332d7a", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "81d50026-2523-41c6-9b77-902190f43f7b": {"doc_hash": "f8d24a0ac6b5d2a132d606c2b93a75d34a27083208e69ac1d3977f8d4cb53cf4", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "05dec978-9706-4716-ac11-f33bae44ea0b": {"doc_hash": "a0d7fe3c315da66f649ce70aea6a59f499f144c6f2048bde3f9d672167b1c93c", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "713a8421-fb21-41ba-ab14-183e576edcf8": {"doc_hash": "00b8ff37c5994e35d93e3b9bd6cb1247726c7af7b0789c272e7d66ba17ffccac", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "fe545f00-c6d3-4531-9c21-45cdddb63c6b": {"doc_hash": "49b0892f056934945aaff9507d51a474952a9ed4824b2c8fd10c4a01ddad8be2", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a": {"doc_hash": "0a830bf94b1a7d73a7d1ad6cd2f10170e377814c2d2cd4f8ba4feff066a88da3", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "9dead0bc-0207-435a-ae20-ce09bcfe8f58": {"doc_hash": "96a84d390c70ad522a7948b71a522abf3b8de6685f05f35bb69f3fd33193444b", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "c7c5137c-0629-4b93-86d0-e670c9f67a27": {"doc_hash": "b2b10c78b48acd400fa4c09ce7802cdddeb43b03fb46cbc9a1bba6d10f897b2e", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "8757f6b1-ae55-499f-b25f-de05ab6dda08": {"doc_hash": "5fdde89194f989c4e29c79fdb2972ac45a6e7398e2268617e58391cafe5517fc", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7": {"doc_hash": "d09e6e27360177622b8e3e0f80c31f219bf20082d76746e23d3504e4051a47a9", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "d1a21348-e334-4cfd-bec4-dd62abb6f17e": {"doc_hash": "0737112ef83730ad8aac8e07487d73fbcb70c1e088eeb2c1560daa6467f6afcb", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "e04b7813-1ac3-41bd-9d76-1989880984cd": {"doc_hash": "e22d8bd28c049277f91f9c276f73962246678d0a3908c66ff2ffa6a5402da309", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "4d438801-b2bf-411f-977d-f82dd9f153ee": {"doc_hash": "30d893e981f757373995323cef7c2c3136ad8d75a84a76946ba5e3939ba81528", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "d906a6e3-7a82-4967-b953-b0fdc66a6e47": {"doc_hash": "4b64dc5da6e65af5d141e6cc2d1e3ed4eb02f3b7f15f019d40e026bf60f0168e", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "9b99d183-9a8b-43db-b957-6e4913e35169": {"doc_hash": "17c5ab16c85d573e0a46ce72a854fdee537ff4d3a42f9fa170d1c365cff78f3f", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4": {"doc_hash": "28d4b7f05a697ba96255c1bb7a8f8be975dd6350ec81a7c2ec7441c168a43bfa", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "bc7ed399-c799-4a22-a1b6-e1f003dd5610": {"doc_hash": "910978dee79dec751575b489260c17c1d0ede680f0bb711c0c8412a983623ba7", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "67b55cd7-f8e1-469b-ad4b-03fa99f217a6": {"doc_hash": "16017dbc6d6fd1f26f1ff7e6d29741dd465409b4f81cd430a2facedd47d45548", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "418bdbeb-1337-428f-9947-64b09fbb11d2": {"doc_hash": "f40c5a56a2d07a4f84de0c2eb574efa0a68207a9e07f71554cde4b02ba647474", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "f3fd52ab-6701-4e46-bc50-334d434e5506": {"doc_hash": "25a0f90bf4e679e653dede701ac50c384e478fa9450de48ecdc9b98a75eba4b9", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "9b6eccff-e7af-41e1-9e66-b386cde7c1c0": {"doc_hash": "056125f791a2b974fedb50b690018838496f51f52be2e2d93de9de3f9e960cdc", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "19e66bab-9c92-4328-9ef0-c968ba87545d": {"doc_hash": "082fbed411c4e004222c0790103ae180651c07e033c1384215ac3e44b0a2d5c7", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "ab51dd03-4549-42e0-8ce6-c7bec4f90dea": {"doc_hash": "1073f27d6742f8686db30b8c3eac613477120f4adfcf1cdc615a9cf9ff2e5568", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "a3543077-dc63-462e-bdde-45a63f52b730": {"doc_hash": "cf62113c691ed50a9697f541b127420173b0ea77ac8a451ebf71119fb1004e07", "ref_doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}, "c15b2c9d-6a7a-4146-813f-f7a124131ae9": {"doc_hash": "492343c9973b4cf9731aab0b57526cc42fa75a84a91269dd05bf3f807f9e5cb3"}, "e53f0119-da24-4204-88c5-936fab297322": {"doc_hash": "5ef346c5b111f5000e916192b9264f33f0945eccf592917e831227a702503f48", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "4f2cb7ba-803b-414c-8fad-e09bf904bef8": {"doc_hash": "0e944ca4d47335f4a1c8385114817b4a39ece8f1824387d1bede70a6ffd3db57", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "bd03b071-a4f2-47be-8f28-d03f6308a455": {"doc_hash": "641b7e9ebc8166af7d8fd692300635c8c6ca6d1d68f1d535202188ec0775d910", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "65cd9328-4671-4d36-8c75-e84b8a97fced": {"doc_hash": "df764cc070aec6ef62bebed8b9806ce755ad5fcd10a5e8e17f551b2aa3646dfd", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae": {"doc_hash": "3845ce808065ded1c03174f8beed88ef38c38784c36d362e659176463c81c5b8", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "0200d07e-ac4a-4836-a687-85bceb36acac": {"doc_hash": "5dfca20b68183342611cfe9069787660c0ede5c2de44b128fbb26ac543b56cdd", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "216c6559-336b-4dad-9799-4b97091755cc": {"doc_hash": "efcdae973ba8907037a88970407c1e90b1498aa58ff83d9415b67c050376cf98", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "22c2f1c7-5c1e-488c-8bac-d5aa917d73ad": {"doc_hash": "e56eb18ba0a93758a9a0eb56a902328dd550d45670a3e073ba7e233fb94e824a", "ref_doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}, "05b0d101-74b5-47fc-9c9e-9f2badf69460": {"doc_hash": "74d4e276c5a0df0efb6151fd6cde663f294b70f6efc69505b0b6565dff909170"}, "5cb2ca77-8c68-4eca-ba7b-09fd6f940847": {"doc_hash": "f37706b970bedeee6b4225daea7500c8fca15fc4a41053ba3971a4f9e6872240", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a": {"doc_hash": "0f4e5132065c998224653a1d34bc57cae145933ac2b2dd5fba6bbdb1ecc01f0b", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "a5d51abe-ea19-4749-aac1-0b15fde47d8c": {"doc_hash": "efc708c64b315bcbf4c9bdf59bfe550ff1fd622271fea106caa830466c23be9f", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "8035ab1f-a41e-4fe9-bf09-ec5ca904acef": {"doc_hash": "df556fe1797ff33507c1547629aacd380d6bf4bae61cbb066ff7bee560450556", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "a23ebbe3-906f-4680-b1f3-a8fb40303f61": {"doc_hash": "ff2acf7fc74dfe85dcb9771f86b4e1250a372234e1e530fed053afa71b4827c8", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "27461456-384c-47b7-b8c8-98d570467a6d": {"doc_hash": "012e647de435bb3f13844aee3aebc169fdd956caf396095c32bc44ad557e1b50", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "aee00e79-c56b-4bd1-8a78-2057cc30c0e8": {"doc_hash": "7fd8e5569856b39e7d6eb7230c6256310d67a5ea1d1ebd115ade27f81046129a", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a": {"doc_hash": "3a0b8b7aaee2895f9384b00f022727b352e8ffcb31eb694184be11affd78ab21", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "892abaa6-8499-4327-bb96-06284025b901": {"doc_hash": "df30e3153197a6884286473b00a7ba8288beab4dd5e786e192774f947dd29c0c", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "04b9e023-54a9-48bd-b155-eb593f297bdd": {"doc_hash": "2b0ec05aee5469185e1fd6e0ca5ccb786124bce1368f9b6acc3f787556b67127", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "20cb6038-10f9-4d16-b107-1cd06e1e0e6a": {"doc_hash": "9ddd767af19477adf8a031f6827e2ae4495827219c06425dc3a8c2a0ca6f481b", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "33b4d705-5b0e-44ba-9e0d-a823990bf169": {"doc_hash": "80ee31de8b8e329accfd865f893be3da3040a98a3521700a6dca797a872b96aa", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "c887158b-3381-4c4b-acfc-233bf64aebaf": {"doc_hash": "b2c80f86e741f5aaa3c64b0b616bdc8849fbbf3681e72dd9d7d19dda0417c2b1", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "180e4ce0-e01b-4b8f-bfaf-14189430a48f": {"doc_hash": "564473797358b6e98f97225f52f0c6b14358a30e459f4429415d24f07b21b50c", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "cae614fa-03f8-4886-b62d-3b8e05d62d75": {"doc_hash": "57baa1ba9f98a8dfc99ad8fa7730398757622a403adb9d69345d6479839ead10", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "39cc9373-6da8-4f5a-95c4-4e81f0f83b35": {"doc_hash": "8e3355355baff555e513426d914a9000b73def3295a00bd37d3f2b306fddc16c", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "50f9afff-32fd-4345-a9e5-fb54e7ec2c63": {"doc_hash": "28a72341e8770a6f026a95a5a2079c5d4808426ef75cf76208f58569a92a59c3", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1": {"doc_hash": "da7f25f0522425390ccf3a0fe630142f359cb11210de1ab84c21b4d3475d5a2a", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "7160204a-9bae-4def-be19-1aaa04593075": {"doc_hash": "58b311db4267c193f6fa55b9203f8116944bb205e003bc9be29afa0bd0d789d5", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "c030132a-f9b1-4ad7-a328-18b6530adb71": {"doc_hash": "f4f3b91cec7c46862fa6fd29de17303c0db5479c4fe64bde0a86b6d9d170408f", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "04023cc9-dc58-42e3-b4e5-535bcabfb7a5": {"doc_hash": "715b5dfae804c34d4d3b4b900fd8ce6e111af8424e09c6a0e50c27932514d68d", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "968e9f84-ce3e-43c7-9e73-52ae72a4f8bb": {"doc_hash": "a8488dff08195275bac7c51bf0437b35f1f5c944c810140dc43fb59101684d2b", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885": {"doc_hash": "7eabbe1ac34f2d8fc463cf59421f5f7e237867d33dbd16fbb8cfda9dd5fc25dd", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "2d5ff229-5b86-4a90-b589-649b7320c30a": {"doc_hash": "45d93388c570edc6d8d34cef67649b180b5173b54d4a39ea5602c0e97a8f1e11", "ref_doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}, "9917c9ce-5007-41c0-a3da-0c22199145ca": {"doc_hash": "7078d3307fcf21e72fb7acf53b6a30b53ddaf883a8df5f9f61fe4330dccf8f66"}, "961c0993-1414-4237-9fcd-5e18abbc1f27": {"doc_hash": "6e1104de9cb6168fdb98653d6e3070113d3d8f134d4ce2d69bf094868dd706bb", "ref_doc_id": "a2935351-6da3-4318-a839-4ee3ea5fc91d"}, "a2935351-6da3-4318-a839-4ee3ea5fc91d": {"doc_hash": "beeeb201d4c460874c61cf9bb322ce5033e518cb809f30eb8ea7ba3a1ecdeff6"}, "5020b73f-8873-4bc9-a860-984ff814f4ea": {"doc_hash": "171bccf26b353dcd675eb0c1d3948607f86cf0cc3972bc5bc9977d32992cf90d", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "8e2e6e89-ded8-4515-9f9c-53a543c290d3": {"doc_hash": "6bc4ffbfc3180d48abf2d582e29d5434fc34e9104db783f7f567aaf94eec65d1", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d": {"doc_hash": "4931308f32678b311ee8ab917a4f022f70fb5ac4b7efb85ed5c2e973c89a40ed", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "e5f227b2-6b9f-4596-bd0e-9efb449a11f1": {"doc_hash": "32e0b95cc8b7365a5feb36772e44f0d04450d852250a8eef1b0ccade6d2708cd", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "8648d275-f562-4f15-8b2f-98dbc599a3eb": {"doc_hash": "3f7d92ed1318202fbf9fef807915e80e5bce455b38ca078f5859b9d012f2e3ae", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "9cc69d8d-10c3-4775-a835-b59bc19029c3": {"doc_hash": "b8ca607de6618148d9f7e4d81d499b8ecfe1fa43fafbe70b279359f5677b69d7", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "2eee2bd9-d3c6-42b6-a5ba-161c3140627e": {"doc_hash": "d02c83cd7bd3ba32e8b788615a46b394170784591fbdd5cb26bebb19b4a165a9", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "c676c70a-da45-43e0-bd7b-5cdd29aaddac": {"doc_hash": "996143074f7723abb71f2138cdecb5a7243effd6e0e8f950e72d0cbc6119781e", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "323d4d8a-4832-4fba-a5f6-fbc36be4955f": {"doc_hash": "0e758ef37a324a08a6c6a2f2ea11271b8d3f09f20e7a55cdf900edc6d3a62d84", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "627f64b5-cc0a-44f2-878d-1f6b1b555992": {"doc_hash": "7d8eb1db48c0263b43bbea6b7400ad96874bf174e266c567ca7cd292c496a0a7", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "2c18f16c-acca-4b17-af67-b8012d776564": {"doc_hash": "578932a44c38de1d5de0aea630d8ac8319f70938314b20fe882254edd8f4b5ff", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "4806f4d4-e0a6-42fe-bab5-a09a31869025": {"doc_hash": "18b41d448637a63a5417658120a41c979cbef78652c2b2942c3b68c53e8c56f4", "ref_doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}, "3239c021-9a3d-4f87-97b2-25fd74e9946d": {"doc_hash": "720644f758b8bf4d11ba341c38db11fd80fca49b1d68c9d3f04011701e556a7d"}, "1dcaf295-e021-4a46-a0b2-b702b52a6625": {"doc_hash": "08971e8286ca2c89dfdf94e96dcab00a0952064ae831280b46e77daaa5c61938", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "6c2e21a2-b490-4b89-bb56-136d64d5176b": {"doc_hash": "cc1f5865c5ee736039a76889e75ff9a4219c68d9bc18f368f8a7f7e3cafcfbc4", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "419073dd-6053-457f-883a-053dd428f9b1": {"doc_hash": "dbe0188ad4a10fe88fd8eacccd21b0ad9ad0bee4f5d20f424e8d2054a0928f17", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "f3d8f307-1cf9-473e-8720-8f1edb18be2d": {"doc_hash": "27dee72b94c18ccda025c57038b293569cb0f2e534f9097158cbc2a5ed107dfc", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "6c34ca18-ab01-4b0b-bef7-c148cf014e89": {"doc_hash": "9da867d47798ef725a7821d78606a518dac4264a25d8501e00d12905906c1a10", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431": {"doc_hash": "b8e33cb242afc0bf324dbe4bbe2ffbbd779f9a2cb2556c61fee45123b6bcb840", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "163dc7ca-a294-44fb-9218-c6ed5185d210": {"doc_hash": "57d6cbe58cd78370025349ac5e1fa7c023e9600f1c83c6869e66312b18df58db", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e": {"doc_hash": "e9118e8a7c940fac9b4e1f4a0e3556ee52076c8e6b397cd0cdd21cecd00d7b35", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "2b2ffcc6-21f2-472a-938b-b1df7e9515a0": {"doc_hash": "c56b46c47c668bb19de07df6b9da151a6cd1de896969aca62788311f2707a24d", "ref_doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}, "ae456982-10e2-4b03-bc74-eb8b4ba0750a": {"doc_hash": "4eb5fec7f965efd4b119a6d2f8e21ddc517990bd2fc81c024d61a90b36548c62"}, "028f2cbc-d5a3-4c41-9cd7-ac718eca0b12": {"doc_hash": "3e3c38153796a12fa0a95f3b807a3b89cd7b2d069596db01d0e3ee4996217ed2", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "7d9ec202-c582-4890-b9d4-401a2ad0db07": {"doc_hash": "8d2444ffc2b7d5052ab66978a253658c15483471be30c952865cd8ef647d2083", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "30b0ca3e-2620-4fe1-b097-72c110d705d1": {"doc_hash": "091b791d1a78b55c5bf850ea58f54be697ccc88ac7827810d4e3cb1b10184bc0", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "0a2374ea-14df-444e-b8fc-a813df7bfa17": {"doc_hash": "ce014399d2295a62538abcedfea5d49202aa8024a59b73ff31319cf0ef700ed5", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "70372725-dd90-49e5-ac9c-37f51dff536c": {"doc_hash": "2c24f0f3c729b1fe69b23b2ecb720f80c63c127dc518b2cc0375ba6869c0f712", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9": {"doc_hash": "cf762f965b766980c5d48cbbb7e7f7a8ea5b58f423d04e2c9d4e6523e746d7e6", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "907087b0-4704-4abb-bf94-b06d63fc3627": {"doc_hash": "0e4043e6968130ffab7a959adacdc0546005aa637b350284e51a46190edcedbd", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "17304c45-6861-4e54-9145-85d48955a89a": {"doc_hash": "0abf361bed70d5f2ba4ad4ea885a1da836a696140baf70406d8efbbc74c057e3", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "6b970b7f-58be-4c41-be0a-d7d9b07203f0": {"doc_hash": "b003464e8657744d07be36312c652d0324869c50062afe7a5292af012a3fd255", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "d69726f7-c633-4f58-9ce2-20dabee28f66": {"doc_hash": "c64bc3abc11463707f6283132d4cc46f896df7bb802d79669510f9184387dca8", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "2fd2ca3c-d471-42c6-ba5e-259b29a4768b": {"doc_hash": "d8e28f03b8daebd423614014fa7e1fa07fe5faa9b11a53b4f086909afe899469", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "9389dd14-1645-4a0c-b5b3-61df42c6bf08": {"doc_hash": "7403a1c604c475c28bccf27cf5e193efee4d1b91f6b30ca61dcf84ff02c97f5c", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "f350b3ab-7bc7-440a-9d8e-81046830991c": {"doc_hash": "e4db01873a27005c41a35cb3ae354fe4ef8ab054ab12170db3ddbda91d28af4a", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "be0bce66-2562-4787-9f85-5fd437201f25": {"doc_hash": "a7dc25dd9d1e54a2e780d793b97978f014e7423b3eeb887959bc9fe065f2c2cb", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "0ed5e479-952d-4459-8e88-ecb54e9a8345": {"doc_hash": "e763b45ae6bdb7668ed004a0f90ffade53be9f902a4a11dcb0325b566d3566ff", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "14f74901-ad84-493d-98ef-f6e18569dc84": {"doc_hash": "1dc944efdc3783d9085573746a0f2dc55db15150f582007532ac03682a76f80b", "ref_doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}, "dc918cd6-dee0-4419-98db-4d7543ec8c3e": {"doc_hash": "a8f7382050ba84025beffeba5eaa5906a4cc197e08e2a130d081b48846d3f801"}, "0881a8f4-0cc8-4880-882e-5c5b4acdaaf8": {"doc_hash": "18bb02afde196144b894e5fe3006cbacaf488bbc4126cd8fc536922ee9a7eac3", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "de36e662-d776-4bd7-8dc0-835d4c72d550": {"doc_hash": "8879531b46d5a3c25262c4d7400b7205d3ccc752eddb44a657c5f68a711f3cc1", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "30250a1b-e5eb-43e8-ba8c-12d181b2de8b": {"doc_hash": "a6f5cdc9ff078b32e590699faa877f298b966bf70bdbadab78198c58b8a11e23", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "7c1e72df-7ff1-4e73-987a-8c8706c5066a": {"doc_hash": "442f468a2adf4ae8131caffcb2ed2f179d6fae84c957ce723258ac2b16710635", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "3eb503e4-29e8-4cde-bfcd-3bfbf280aafc": {"doc_hash": "659fa7abc74ab26465769fd3b2468ac72f923559b7370e4b6d83206727689842", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "36121d44-18fc-4594-a21a-90e168f5082f": {"doc_hash": "3fdd2efd79ec275240da72570d4a3ed6ffc62e62a54341c5865c18fe3baa1075", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "89120f0b-a7fc-4534-819b-3028f03632d4": {"doc_hash": "34f36d1f46c6dca05f0ce515c78a2a72a40264cac7023dc6dc04ac59cb88692b", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "9acb9a18-b522-4923-a80f-b5e39002b6ef": {"doc_hash": "5071fb6fc29870ef113960de6b89c7a6bde7b23d4d2dc2a2eb39aa02cad265e4", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "6801aac7-95ab-4b23-ae71-5ba8e456b7a2": {"doc_hash": "6ed750fe13985947ecd987fb76903957f37ac8544c40dfda0d45a669f712d763", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "b5ebb767-9e90-4877-b891-cfa65ae8ac8d": {"doc_hash": "e99e10ff030674dd44f22f5fe61175e55dd4622c420c4079f11427b5403cf837", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "ee27b20c-0d1c-4eed-8b0a-ec42beb60e28": {"doc_hash": "378b5f12f6b8d61890d7f0e5ca36197b1545e098c103ffa7590965c65b37d48e", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3": {"doc_hash": "9f511815868dbfdcbfb8e963ae16169fe4903396695a255e6476d9fdf296fd2b", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9": {"doc_hash": "870dd6bb80f1432888226877ad1689c7529d41bc59cce4995fce2ad94dff91d8", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "9411a935-9ae7-4828-8dde-6bd65f725c38": {"doc_hash": "04acb7df4311c8fbfa241510dd155ac2ed9487f5b00d5a6742d542b89f35a82e", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "2da03df3-b5e4-461e-bb72-d20938ceed7c": {"doc_hash": "c59e40550900e2fc22f4ff52e6a9447237fb1d27f226e73d1425e2e6a19f804e", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "de777270-1445-4579-a17a-882d7f4653f2": {"doc_hash": "5699cdb5fc5a52dd47543f6efaae03cbbd5274f367cd560f7a8d926a9fec1522", "ref_doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}, "20a359f2-e80e-47aa-8cb4-56bba4e6cef4": {"doc_hash": "09ea608da5dfb2c3fd42c714427ede8b912722b2f3a3e872928d62ee633450ff"}}, "docstore/ref_doc_info": {"29dc06d4-2164-4129-868f-4a613daa06dc": {"node_ids": ["6a631852-fb8e-4ca6-8cb0-1e3b7b881be0", "5494819d-a99c-4902-ac0a-ae3353796805"], "metadata": {"window": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n Key Stages 3-4 | Empire and Industry 1750-1850\nLesson pack\n", "original_text": "Slavery\nHow did the Abolition Acts of 1807 \nand 1833 affect the slave trade?\n", "page_label": "1", "file_name": "slavery.pdf", "doc_id": "29dc06d4-2164-4129-868f-4a613daa06dc"}}, "2f562c8e-aa95-4016-aa53-6e4bd04073a3": {"node_ids": ["c2c51f1a-3c4c-4f7c-b814-4da4ef71765b", "24a22607-3347-48a6-ba9e-d72156f02a9b", "83143d31-b3ca-4cbc-bfc9-1dab636c966a", "68a75094-0a21-47c5-b93e-c35a8d18d947", "d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21", "b02533b8-c391-4c12-b275-64526272c0bf", "d028ff1f-c35d-46cc-bd7f-0ea3a655e513", "83509f26-a88a-45a3-b0cd-4db3cdca12ae", "45e2c9d6-f52d-456d-b335-2ff8a3efc624", "f4dde1b9-a171-4ba5-84f9-f033722675e0", "f6e1d1a5-cf15-41ab-9d85-c1884305d548", "1564a509-3858-4618-8b3e-f251f2d7eb84", "866a4b6f-aee8-47d9-be5d-feaa3acad45b", "5250640b-2a90-4a3f-beae-e9c425b2e409"], "metadata": {"window": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n Images from copyright holders other than the National Archives may not be reproduced for any purposes without the \npermission of the copyright holder. Every reasonable effort has been made to trace copyright but the National Archives \nwelcomes any information that clarifies the copyright ownership of any unattributed material displayed.Key stage 3:\nIdeas, political \npower, industry \nand empire: Britain, \n1745-1901Britain\u2019s \ntransatlantic slave \ntrade: its effects and \nits eventual abolition\nKey stage 4:\nAQA GCSE History: \nBritain: Migration, \nempires and the \npeople: c790 to the \npresent day\nOCR GCSE History: \nPolitical and social \nimpact of empire on \nBritain 1688\u2013c.1730KS 3 - 4\nEmpire and Industry \n1750-1850\nConnections to the \nCurriculum:Suitable for:\nTime period:As soon as Europeans began to settle in America, in the early \n16th century, they imported enslaved Africans to work for them. \n As European settlement grew, so did the demand for enslaved \npeople. ", "original_text": "This resource was produced using documents from the collections of The National Archives and other copyright holders. \n", "page_label": "2", "file_name": "slavery.pdf", "doc_id": "2f562c8e-aa95-4016-aa53-6e4bd04073a3"}}, "cd4d3243-a6ae-445a-b0fd-7f8b40073b34": {"node_ids": ["f09ad18b-809e-48c1-9594-08c0e7cd94e8", "27006bda-d38e-440b-9b44-51cb0c237139", "b83b8665-b20a-40cd-8635-744eb32f0865", "cb949682-7cf9-433d-a818-d9095bc087fc"], "metadata": {"window": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. However, \nslavery continued in other areas of the British Empire including the territories run by the \nEast India Company, Ceylon (modern day Sri Lanka) and St Helena. Between 1808 and \n1869 the Royal Navy\u2019s West Africa Squadron seized over 1,600 slave ships and freed about \n150,000 Africans but, despite this, it is estimated that a further 1 million people were \nenslaved and transported throughout the 19th century. Use this lesson to explore original \ncourt records from Dominica, a British colony and photographs from HMS Daphne, a British \nnaval ship later used to prevent the transportation of enslaved people.Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "3Introduction\na further act to abolish slavery in the British West Indies, Canada and the Cape of Good \nHope (southern Africa), meaning that it was now illegal to buy or own a person. ", "page_label": "3", "file_name": "slavery.pdf", "doc_id": "cd4d3243-a6ae-445a-b0fd-7f8b40073b34"}}, "7a55c287-d0bf-464b-a5e8-76a17da3deb7": {"node_ids": ["e8aaccc0-ad4a-4d97-a3cc-ede7c776cbe1"], "metadata": {"window": "4Contents\nIntroduction Page 2\nContents Page 4\nTeacher\u2019s notes Page 5\nBackground Page 6\nExternal links Page 8\nTasks Page 9\nSource 1 Page 11\nSource 2a Page 13\nSource 2b Page 14\nSource 2c Page 15Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "4Contents\nIntroduction Page 2\nContents Page 4\nTeacher\u2019s notes Page 5\nBackground Page 6\nExternal links Page 8\nTasks Page 9\nSource 1 Page 11\nSource 2a Page 13\nSource 2b Page 14\nSource 2c Page 15Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "page_label": "4", "file_name": "slavery.pdf", "doc_id": "7a55c287-d0bf-464b-a5e8-76a17da3deb7"}}, "8cecea65-dbdf-4b0f-9abe-801a0a87f675": {"node_ids": ["58e7818c-f650-401b-9c01-7d3905c2407b", "ddec1dd2-5542-4cf6-9516-364a188cb50c", "3d634f4a-6464-4604-b2ce-c9c1644b3d6e", "a07eb1c6-055b-4024-b693-e46624363a24", "7b7b6905-0f25-4a92-8974-653add4ae317", "e1333b08-9d0d-4c3b-a8cd-f51cb20d7314", "4fe7d6bf-eb33-493b-8b7a-23f0c94b5153", "7da8e5a7-784b-4f29-84f7-8d458417c35e", "22465b8a-248a-4772-ad2a-fbd03e55b3bf", "0ecb0ff8-e372-4eaa-8208-e819b5a1714b", "192d43fd-b604-4e93-accc-cc6f5d07cdf9", "6f129632-3f87-44a7-989c-ec9c49d59bc6", "f4706536-f8da-4795-92dc-d4c1071a07cd", "cbaafd8e-06d1-4576-9bc1-d93dad3170b8", "5b642f65-112a-43d4-9b14-335caa53070d"], "metadata": {"window": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n This lesson offers graphic evidence of the cruelty on which enslavement was based. The \nCourt Records from Dominica reveal all kinds of details about the way enslaved African \nsociety worked. Most of all, however, it shows the punishments meted out to enslaved \npeople, in all its brutality. ", "original_text": "5This lesson has a video starter activity based on one of our documents to \u2018hook\u2019 students \ninto the lesson tasks that follow.\n", "page_label": "5", "file_name": "slavery.pdf", "doc_id": "8cecea65-dbdf-4b0f-9abe-801a0a87f675"}}, "bbd5dead-2586-4fd0-a289-d0cfa542d97b": {"node_ids": ["65481478-3f66-4cc5-9784-6b8c54661654", "0026c333-d487-4ad1-82eb-c7465cb926b8", "65f5353c-1f93-436f-95b4-4aa3f60e03fc", "4436eb3c-9c54-4893-8d62-32bb42cb46ef", "dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e", "8b7b9878-5693-439a-a23e-4cc6d1493350", "95f99dab-63db-4b78-826d-696a8ff66ab9", "bc64b8ee-928f-4d28-876b-fd773677e984", "3abde7ec-f74a-4629-b17d-67475d92da1f", "7fdda8db-5310-487c-8bf5-6fa4fd27794d", "9a94a297-d0f9-4898-9f65-0144aad5c26f", "3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07", "cadbd380-380b-4f8e-929d-4bb1555aeb54", "ecd2acb0-bb8e-4f4d-9780-e3281c776920", "078d64c7-eccc-4149-9a17-fb2926c65eb9", "69bc62b7-4d5c-452a-9b92-270911d4a0fe"], "metadata": {"window": "6Racism\nEnslavement is both a result and a cause of racism. A belief that certain people were racially \ninferior allowed Europeans to set up the trade in African enslaved people in the 1520s. \n It encouraged whites to believe that the cruelty of the capture of enslaved people, the \ninhuman conditions on the slave-ships and the incredibly harsh treatment the enslaved \nreceived in the Americas were somehow justified. Source 2 is just another example of this. \n", "original_text": "6Racism\nEnslavement is both a result and a cause of racism. ", "page_label": "6", "file_name": "slavery.pdf", "doc_id": "bbd5dead-2586-4fd0-a289-d0cfa542d97b"}}, "3db0326d-94e3-46dd-b8ab-01401bb17d05": {"node_ids": ["28a8185c-f125-4827-b001-61b93cd4bcc4", "f7144879-9b5e-4f29-bbf9-386cb07ef6fa", "c511a92a-648f-4757-a9ad-d7f0323a2184", "1e866be3-ffe5-46cf-b4a3-8ac41f938b69", "b6af877d-2390-4bd8-a6d2-6ed4a772215d", "d0b11037-1945-40ec-8ab3-47921d1fadcb", "7fd8f050-d87e-41cc-9c63-0003e5ee1544", "a77ba583-0f1d-46b2-8ff7-ae17479ce0fd", "300666de-ee99-4e70-879a-f6089faafc46", "fc29303b-07ce-4727-be27-983181f9f61e", "f8cbb712-32b8-4562-bde4-fb725b3d9205", "5d9e999c-18a0-4cb2-9926-50c308eb129b"], "metadata": {"window": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. From the 17th century, gangs of runaways \u2013 called \u2018Maroons\u2019 in Jamaica \u2013 set \nup independent, permanent communities which resisted all efforts of the white owners and \nsoldiers to crush them. Sometimes this broke out into open conflict, such as the Maroon \nWars of 1730-1740 and 1795-6. There were also slave revolts, in Antigua in 1735, Tacky\u2019s \nrevolt in Jamaica in 1760, Kofi\u2019s revolt in Guyana in 1763, in Granada in 1795-7, and so on.\n", "original_text": "7African songs, games, stories and religion helped to maintain the enslaveds\u2019 belief in \nthemselves. ", "page_label": "7", "file_name": "slavery.pdf", "doc_id": "3db0326d-94e3-46dd-b8ab-01401bb17d05"}}, "177942a4-1a57-4e01-9b0e-e8f1d76e64cb": {"node_ids": ["a56e9c7d-5513-45d6-a642-be7af0c2e85c", "6a803b57-49fc-48ca-9393-972328ee4732"], "metadata": {"window": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n International Slavery Museum2\nInternational slavery museum collections at Liverpool Museum\nOlaudah Equiano3\nThe life of the 18th century writer and abolitionist Olaudah Equiano, with the Equiano \nSociety and Birmingham Museum and Art Gallery\nWhat is modern slavery?4\nWhat is modern slavery today?External links\n1 https://www.sonofthesouth.net/slavery/index.html\n2 https://www.liverpoolmuseums.org.uk/international-slavery-museum\n3 https://equiano.uk/\n4 https://www.antislavery.org/slavery-today/modern-slavery/Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "8Son of the South1\nA useful site with lots of enslavement related images and resources.\n", "page_label": "8", "file_name": "slavery.pdf", "doc_id": "177942a4-1a57-4e01-9b0e-e8f1d76e64cb"}}, "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1": {"node_ids": ["02ca96c4-6d09-4dc8-92cc-b544eedf62f1", "ed46bb94-ddc0-496e-b660-7dc1414efb5a", "2bad9597-31ad-4288-9dce-b385ed1aac1a", "8ded3bcf-f8a8-461b-a4b9-9a85d82797f3", "3b9a25ca-ad51-446a-b03e-3ebd0d40242d", "58185f9d-bf2a-443c-bc76-f5bfe06ec79a", "e2622ce4-abb8-4d42-86d9-966ce0b9ca15", "9949ac58-0bff-4791-bb37-9b42df6977db", "5214c1b3-9682-48b2-a25e-f4d5879a1a65", "9e2d2d43-625d-4106-8d00-c47da6bd20c3", "d6b690e6-46f0-492f-8f4b-3a7a80d07138", "df93033a-8dd3-49f7-b348-763d0b48e612", "5a860cda-b415-4d83-aa50-ae5b9e63b858", "01fe664f-3b2a-46d1-b8bb-7d45779f69f6", "bcdc7243-9dd5-445b-b2b7-358c669c8893", "966263e0-1f7b-4cc1-8815-c3f548f11def", "df0da444-94fc-4ca2-99eb-20c90d355490", "adb544e2-adb7-4b83-a8aa-cefb1f2db533", "100c5e3f-39bf-4e91-8a77-6be51ab4a2a1", "5f79533d-d369-490f-9016-5149f141ebc5", "05c844be-7464-4e7c-913c-5ffbce72216d", "e1e2da1d-700d-405d-8f91-cf85a3d0298c", "77272b59-5423-4d64-9966-838372f1baf0", "2e3ae5c2-1359-477f-8d03-f94011102462", "e2638c82-3b0f-4b13-bb08-7dda091f3742", "490925cf-dc04-479d-9867-e2198bb474a1", "b33fb72e-9070-4eae-a7b0-c567c9f6ea22", "49b8caf2-6a12-493b-ad4c-0f93bcd226dd", "95c6c4a4-fa11-42d8-9f26-8a79039a5c52"], "metadata": {"window": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. Read Source 1. Look at the names on the document.\n \u2022 These enslaved people originated in Africa. ", "original_text": "9History Hook \u2013 Starter Activity\nWatch History Hook: Slavery here.1\n1. ", "page_label": "9", "file_name": "slavery.pdf", "doc_id": "306a6f2a-8db9-4115-8bbc-26c63ebc9ea1"}}, "a1b36aea-2d3b-40a3-b0f7-db85022a4e61": {"node_ids": ["7bd2d852-2912-49ec-a0a2-20b8af746cd7", "ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197", "611a01a0-1846-4956-afa8-1721c7e159c6", "dc6ba06b-d8da-41cc-9bfe-2278eea4e56a", "93c1fbbd-2699-4ae1-9962-68a0659657e4", "8f813959-7893-486a-8d03-714339c68ce4", "f05a433d-ed66-4ed2-833c-2883a8db685a", "28408e6d-fbfd-45e2-bc90-cb420df61123", "6a5bd365-07fd-49c3-bbee-d97f50e051da", "2ab9e166-9379-493f-928b-d89ae364ae9b", "3a4ba3e0-e605-466a-9393-c37ae9f6f854"], "metadata": {"window": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. These \nphotographs were taken about 1868, off the east coast of Africa. They form part of a Report \nfrom John Armstrong Challice, a Lieutenant in the Royal Navy, working to abolish slavery in \nZanzibar. Zanzibar did not abolish slavery until 1897.\n", "original_text": "10Having been the largest slaving nation, Britain became a determined abolitionist \npower after 1833, using the Royal Navy to stop ships suspected of being slavers. ", "page_label": "10", "file_name": "slavery.pdf", "doc_id": "a1b36aea-2d3b-40a3-b0f7-db85022a4e61"}}, "30351e02-9445-431c-938b-2b002ed4735e": {"node_ids": ["58bd1a0c-4caf-4aab-97b9-d69cdaf9170e", "1af5f605-ca46-404d-8dc5-fc1b82de88e6"], "metadata": {"window": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . Catalogue Ref: CO 71/51Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 1: Court records from Dominica, a British colony in the \nLeeward Islands, January 1814 . ", "page_label": "11", "file_name": "slavery.pdf", "doc_id": "30351e02-9445-431c-938b-2b002ed4735e"}}, "611b26a5-41ee-46cf-9d5a-b8a84b074f5d": {"node_ids": ["0d9629cf-7213-4062-b3e8-7dbdfc05c1e6", "7d80ba2f-ba44-49e2-97c8-68cea22d2916", "bd2cf428-3bc4-4670-a299-bf780c72bea3", "8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6"], "metadata": {"window": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. Body hanged on a \nGibbet, 16 Jan[uar]y 1814\n15 & 16 Peter Hillsbro\u2019 \nEstateditto Exiting a Mutiny among \n20 Negroes of the \nEstate & harvesting \nthem with provisions & \nwhile runawayTo be hanged Hanged. Head cut off & put \non a pole. Body hanged on a \nGibbet 18 Jan[uar]y 1814\n16 Hector Mr Lionne ditto Runaway To receive 100 \nlashes & to be \nworked in chains \n6 monthsReceived 100 lashes 16 Jan \n1814 & sold 21st April\nRachel Mr Grano ditto ditto To receive 30 \nlashes & to be \nworked in chains \n3 monthsReceived 30 lashes & \ndelivered to owner 16th April \n1814\n22 Dick & \nDanielHillsbro\u2019 \nEstateditto ditto To receive 100 \nlashesRec[eived] 100 lashes each, & \nreleased to owners att[ention] \n22nd Jan 1814\nSarah ditto ditto ditto To receive 50 \nlashesPardoned & released 30th \nJan[uar]y\nHetty, \nPenny & \nPlacideditto ditto ditto To receive 40 \nlashes eachReceived 40 lashes each \n& returned to owner\u2019s \natt[ention] 22nd Jan[uar]y\n28 Joseph Mr \nDubocqditto supplying Runaways \nwith salt & with \nprovisionsNot guilty Discharged\nPierre Mr Polus \nEstateditto Encouraging the \nNeg[roe]s upon that \nestates who had \nabsconded to stay \nawayTo receive 100 \nlashes & to be \nworked in chains \n6 monthsRec[eived] 100 lashes & died \nin Jail 6 aprilTranscript: Source 1Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "1814\nJan[uar]\ny 15John \nPierreMr Grano 1814\nJan[uar]y 15 John \nPierre Mr Grano \nCo[ur]t MartialAttempting to return \nto the Runaways with \nProvisions & having \nbeen runaway 2 \nMonthsTo be hanged Hanged : Head cut off & put \non a Pole. ", "page_label": "12", "file_name": "slavery.pdf", "doc_id": "611b26a5-41ee-46cf-9d5a-b8a84b074f5d"}}, "dcc276f2-8e13-49fb-b2b8-3af796d95944": {"node_ids": ["e3c390e3-85d3-4c69-9c96-066b77f5a79a", "332a3a26-4225-4fc5-a916-757c9d09546c"], "metadata": {"window": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2a: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "13", "file_name": "slavery.pdf", "doc_id": "dcc276f2-8e13-49fb-b2b8-3af796d95944"}}, "48f148f1-e6de-4ba3-b63f-9a51f934fa53": {"node_ids": ["e42821bf-4fee-435b-a441-6e711f93afa8", "fba66f0c-582c-4727-a940-6fe6b399d0e8"], "metadata": {"window": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2b: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "14", "file_name": "slavery.pdf", "doc_id": "48f148f1-e6de-4ba3-b63f-9a51f934fa53"}}, "d8135eba-3ae8-414d-b04b-af55d8891a72": {"node_ids": ["0cb107c3-ba56-4017-bc47-5a0b3b692df2", "3b079652-a22e-4cea-aa9a-5405b1f81807"], "metadata": {"window": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . Catalogue Ref: FO 84/1310Slavery How did the Abolition Acts of 1807 and 1833 affect the slave trade?", "original_text": "Source 2c: East African enslaved people released from a dhow by \nHMS Daphne, 1 November 1868 . ", "page_label": "15", "file_name": "slavery.pdf", "doc_id": "d8135eba-3ae8-414d-b04b-af55d8891a72"}}, "b0199728-e735-498f-806f-7bd8330355e0": {"node_ids": ["ffada7bd-ed77-47e1-b51b-b578bcbabf71", "e2f56072-fc39-4e1a-bee3-73eede268aa6", "9d56e7de-e17b-4ada-a431-edb219071f49", "43a19927-4a33-4a89-83fd-ad58d585938e", "200e4c3e-0cfb-43a0-809f-1ce8197f0fec", "4e9eb35d-1e39-4c53-839f-52bec0f97536", "979b9255-62a1-439e-98c6-433a4c37af0e", "b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d", "e209f9bf-dda9-43e3-8c64-38517c43c14f", "68602cb0-6f9d-4eec-b4dc-af904ddf9455", "9203e64d-436e-40d3-864d-bc7a6970b421"], "metadata": {"window": "Why do our hyperlinks come with footnotes?\n Our resources are designed to be printed and used in classrooms, which means hyperlinks \naren\u2019t always accessible digitally. We include the full link at the bottom of the page so that \nyou can type in the address without distracting from the main text of the lesson materials.\n Did you know? \n", "original_text": "Why do our hyperlinks come with footnotes?\n", "page_label": "16", "file_name": "slavery.pdf", "doc_id": "b0199728-e735-498f-806f-7bd8330355e0"}}, "f6041522-e8d0-4707-9e2e-ce505314b1b8": {"node_ids": ["a39ac088-9722-442e-9d9b-c0e55fc17801"], "metadata": {"window": " \n \n \n \n \n \n Anti-Money Laundering / \nCounter Financing of Terrorism \nPolicy \n(AML / CFT POLICY) \n \n \n \n \n \n \n \n \n \n \nRevised: January 2023 \n \nAPPROVED BY 416TH BOD MEETING DATED 4TH JAN 2023 \n \n \n \n", "original_text": " \n \n \n \n \n \n Anti-Money Laundering / \nCounter Financing of Terrorism \nPolicy \n(AML / CFT POLICY) \n \n \n \n \n \n \n \n \n \n \nRevised: January 2023 \n \nAPPROVED BY 416TH BOD MEETING DATED 4TH JAN 2023 \n \n \n \n", "page_label": "1", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "f6041522-e8d0-4707-9e2e-ce505314b1b8"}}, "ec393c1b-18d0-4461-9c32-b75b3d9ea676": {"node_ids": ["eca70f18-6c77-4e89-a476-fd5a9e713826"], "metadata": {"window": "i Contents \n \nVERSION CONTROL iii \nABBREVIATIONS iv \nCHAPTER 1: INTRODUCTION 1 \n1.1 Background 1 \n1.2 Definitions of key terms 1 \n1.2.1 Money Laundering 1 \n1.2.2 Financing of Terrorism 2 \n1.2.3 Proliferation Financing 2 \n1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) 2 \n1.2.5 Trade based money laundering 2 \n1.2.6 Customers 2 \n1.2.7 Shell bank and shell entity 2 \n1.2.8 Beneficial owner 3 \n1.2.9 Tipping Off 3 \n1.3 Objective 3 \n1.4 Governance Structure 3 \n1.4.1 Board of Dire ctors 3 \n1.4.2 Senior management 4 \n1.4.3 AML/CFT Unit 4 \n1.4.4 Asset (Mo ney) Laundering Prevention Committee 4 \n1.4.5 AML/CFT Committee 4 \n1.4.6 Three -line-of-defense 5 \nCHAPTER 2: CUSTOMER IDENTIFICATION AND DUE DILIGENCE 8 \n2.1 Know Your Customer 8 \n2.2 KYC Elements 8 \n2.2.1 Customer Identification Procedures 8 \n2.2.2 Risk Management 9 \n2.2.3 Customer Acceptance Policy 10 \n2.2.4 Monitoring of Transactions 12 \n2.3 Customer Due Diligence 12 \n2.3.1 Types of CDD based on customer risk rating 13 \nCHAPTER 3: MONITORING AND REPORTING 14 \n3.1 Transaction monitoring 14 ", "original_text": "i Contents \n \nVERSION CONTROL iii \nABBREVIATIONS iv \nCHAPTER 1: INTRODUCTION 1 \n1.1 Background 1 \n1.2 Definitions of key terms 1 \n1.2.1 Money Laundering 1 \n1.2.2 Financing of Terrorism 2 \n1.2.3 Proliferation Financing 2 \n1.2.4 Anti-Money Laundering (AML)/Counter -Financing of Terrorism (CFT) 2 \n1.2.5 Trade based money laundering 2 \n1.2.6 Customers 2 \n1.2.7 Shell bank and shell entity 2 \n1.2.8 Beneficial owner 3 \n1.2.9 Tipping Off 3 \n1.3 Objective 3 \n1.4 Governance Structure 3 \n1.4.1 Board of Dire ctors 3 \n1.4.2 Senior management 4 \n1.4.3 AML/CFT Unit 4 \n1.4.4 Asset (Mo ney) Laundering Prevention Committee 4 \n1.4.5 AML/CFT Committee 4 \n1.4.6 Three -line-of-defense 5 \nCHAPTER 2: CUSTOMER IDENTIFICATION AND DUE DILIGENCE 8 \n2.1 Know Your Customer 8 \n2.2 KYC Elements 8 \n2.2.1 Customer Identification Procedures 8 \n2.2.2 Risk Management 9 \n2.2.3 Customer Acceptance Policy 10 \n2.2.4 Monitoring of Transactions 12 \n2.3 Customer Due Diligence 12 \n2.3.1 Types of CDD based on customer risk rating 13 \nCHAPTER 3: MONITORING AND REPORTING 14 \n3.1 Transaction monitoring 14 ", "page_label": "2", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "ec393c1b-18d0-4461-9c32-b75b3d9ea676"}}, "5ca7e0e6-948d-4bf4-9917-b65984e80d3e": {"node_ids": ["36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499", "ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e", "77051c31-f841-4e14-894e-1f862021b3dd", "595b345e-ee63-409c-9292-68359467be4f", "57f9f691-887d-4f71-a458-7373c780e219", "e5a1e03f-b0a0-4d55-9200-b54d3c152d3e", "3acecbd4-1867-4451-b65a-5dbf975bb532", "0957ead3-48dd-4dba-8d5d-231ad4bf4079", "e8285ac4-67c6-465e-bb2e-bb4d232ee8b9", "f6df0908-4d14-4b3f-89c7-0d0db1a18073", "403213cd-056c-4dd4-9f30-6c196e4b843a", "763de8e3-b292-4b0f-a23d-352999b8dac3"], "metadata": {"window": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. Training 17 \n4.2. Confidentiality and Tipping off 17 \n4.3. Non-Compliance 17 \n4.4. ", "original_text": "ii 3.2 Reporting 15 \n3.2.1 Resubmission Policy 15 \n3.2.2 Failure to Report 15 \n3.2.3 Sanctions and Name Screening 15 \n3.2.4 PEP and adverse screening 16 \n3.2.5 Reporting Obligations 16 \n3.3 Record Keeping 16 \nCHAPTER 4: AWARENESS AND TRAINING 17 \n4.1. ", "page_label": "3", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ca7e0e6-948d-4bf4-9917-b65984e80d3e"}}, "3d83bde6-3c0e-4f0f-b109-1c92783dc84e": {"node_ids": ["0029fe70-8458-48fe-9867-052638f3e121", "49061286-377d-4bd2-868f-9af96241cc3f"], "metadata": {"window": "iii VERSION CONTROL \nVersion Control No. Date Remarks \nVersion 1 July 2012 \nVersion 2 August 2015 Revised \nVersion 3 December 2017 Revised \nVersion 4 December 2018 Revised \nVersion 5 February 2020 Revised \nVersion 6 January 2023 Revised \n ", "original_text": "iii VERSION CONTROL \nVersion Control No. ", "page_label": "4", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "3d83bde6-3c0e-4f0f-b109-1c92783dc84e"}}, "b1ef24fa-97f3-42e0-961d-291e54170218": {"node_ids": ["4e9bcbd6-b2f0-4e98-b621-37cd6e2bab33"], "metadata": {"window": "iv \nABBREVIATIONS \n \nAML Anti-Money Laundering \nALPA Asset (Money) Laundering Prevention Act, 2064 \nAPG Asia/Pacific Group on Money Laundering \nBOD Board of Directors \nCDD Customer Due Diligence \nCCO Chief Compliance Officer \nCOCO Chief of Country Operations \nCEO Chief Executive Officer \nCOO Chief Operating Officer \nCFT Counter -Financing of Terrorism \nECDD Enhanced Customer Due Diligence \nEU European Union \nFATF Financial Action Task Force \nFIU Financial Intelligence Unit \nHMT Her Majesty\u2019s Treasury, United Kingdom \nHRD Human Resource Department \nKYC Know Your Customer \nKYE Know Your Employee \nML Money Laundering \nMLRO Money Laundering Reporting Officer \nML/TF Money Laundering and/or Terrorist Financing \nNRB Nepal Rastra Bank \nOFAC Office of Foreign Assets Control \nPEP Politically Exposed Person \nRules Asset (Money) Laundering Prevention Rules 2073 \nSTR Suspicious Transaction Report \nTBML Trade Based Money Laundering \nTF Terrorist Financing \nThe Policy Anti-Money Laundering / Counter Financing of Terrorism Policy of the Bank \nTTR Threshold Transaction Report \nUN United Nations ", "original_text": "iv \nABBREVIATIONS \n \nAML Anti-Money Laundering \nALPA Asset (Money) Laundering Prevention Act, 2064 \nAPG Asia/Pacific Group on Money Laundering \nBOD Board of Directors \nCDD Customer Due Diligence \nCCO Chief Compliance Officer \nCOCO Chief of Country Operations \nCEO Chief Executive Officer \nCOO Chief Operating Officer \nCFT Counter -Financing of Terrorism \nECDD Enhanced Customer Due Diligence \nEU European Union \nFATF Financial Action Task Force \nFIU Financial Intelligence Unit \nHMT Her Majesty\u2019s Treasury, United Kingdom \nHRD Human Resource Department \nKYC Know Your Customer \nKYE Know Your Employee \nML Money Laundering \nMLRO Money Laundering Reporting Officer \nML/TF Money Laundering and/or Terrorist Financing \nNRB Nepal Rastra Bank \nOFAC Office of Foreign Assets Control \nPEP Politically Exposed Person \nRules Asset (Money) Laundering Prevention Rules 2073 \nSTR Suspicious Transaction Report \nTBML Trade Based Money Laundering \nTF Terrorist Financing \nThe Policy Anti-Money Laundering / Counter Financing of Terrorism Policy of the Bank \nTTR Threshold Transaction Report \nUN United Nations ", "page_label": "5", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b1ef24fa-97f3-42e0-961d-291e54170218"}}, "69dfe709-e348-45f2-98f4-f093395080a7": {"node_ids": ["bfd83eea-695c-4156-b9e0-ed51488f50cd"], "metadata": {"window": "v WMD Weapons of Mass Destruction ", "original_text": "v WMD Weapons of Mass Destruction ", "page_label": "6", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "69dfe709-e348-45f2-98f4-f093395080a7"}}, "00a8ff61-766b-425a-aa31-182b8d2366e6": {"node_ids": ["c52e477a-e629-4d8d-ae02-3acec463f0e5", "528d270b-d6b7-458c-aa0c-17cfb1b7493b", "38c05c5c-78a9-41fd-b8c8-cc911b44b392", "3766a672-229d-481b-8e77-f63d9edfe42d", "88caea78-3b8c-4c50-8e40-be33f06d0a84", "79661545-c9b8-410c-a23c-7b75c28e1847", "4118448b-bb8b-4fd6-9f1b-e10f8247536f", "f157ec57-6d4d-4539-a463-eaef48d39eaa", "024fedaa-e2e4-4733-80db-1770ee4be916", "852347b8-c229-42b8-9261-bc9c6037ad24", "7a64fd7d-9b41-4740-a3de-2b277f852653", "a390b91f-efb8-4f77-9649-77a25276cf6b", "48499d08-c18e-4ae7-a08e-14c6a8ce5534", "120557fb-efb3-4afd-a575-fb950b4dde3e", "5d85bafc-9d1d-41e2-895a-d18e73e172ae", "2e61ba59-a7aa-4b65-926a-687ae86861e3", "ca8ed9ab-36c3-4cc9-9200-a44281095748", "83f784f8-1769-4a12-a9fc-e66d75ebd146", "d358ea6f-d726-4852-b959-6b6f02b7f626", "77027437-a678-41be-b475-fb1d8b50057e"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. The Bank is committed towards providing entire \ncommercial banking products and services. The Bank\u2019s shares are publicly traded in the \nNepal Stock Exchange. \n The Bank is well aware of the importance of preventing money laundering and terrorist \nfinancing activities and is fully committed towards the implementation of the highest \nstandards of anti -money laundering and counter financing of terrorism (AML/CFT). ", "original_text": "Global IME Bank Limited AML / CFT Policy \n1 CHAPTER 1: INTRODUCTION \n \n1.1 Background \nGlobal IME Bank Limited, herein after referred to as the \u201cBank\u201d, is Nepal Rastra Bank ( NRB ) \nlicensed \u201cA\u201d Class commercial bank. ", "page_label": "7", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "00a8ff61-766b-425a-aa31-182b8d2366e6"}}, "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8": {"node_ids": ["fa1fcd89-0316-4277-a96a-908337af1bcb", "54e47b1b-5be0-423e-8358-83c8c815d142", "795741ac-cedf-4428-8f5e-165bd45b1a62", "83547562-e8ba-4313-93f1-fc33fd2e0cd7", "a8fddcc6-b502-48a5-957e-099fdc6d5fdc", "d158c94d-fd03-4607-b7b2-b817dc6750ac", "89375532-71c7-4ba7-a392-f09aaf08f2be", "9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367", "835d2923-71e0-4163-893a-caabe716e546", "ca32725c-6115-49db-913c-df3b07fa6beb", "578241bd-9f23-4439-a655-d30648805018", "e14f6cb9-9e6c-4472-abf0-450c9619ec9f", "914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10", "2bd791d3-6858-47f9-865f-388dac32fac6", "c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. Financing of Terrorism involves the \nsolicitation, collection or provisions of funds with the intention that they may be \nused to support terrorist acts or o rganizations. Funds may stem from both licit and \nillicit sources. More precisely, according to the International Convention for the \nSuppression of the Financing of Terrorism, a person commits the crime of financing \nof terrorism \u201cif the person by any means, directly or indirectly, unlawfully and \nwillfully, provides or collects funds with the intention that they should be used or in \nthe knowledge that they are to be used, in full or in part, in order to carry out\u201d an \noffense within the scope of the Convention . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n2 1.2.2 Financing of Terrorism \nFinancing of Terrorism mea ns financial support to any form of terrorism or to those \nwho encourage plan or engage in terrorism. ", "page_label": "8", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c33d88c6-a1cf-4eb7-9daa-f00a5b87fba8"}}, "67a8ab21-d0a6-4af5-a14e-ba8258af56fe": {"node_ids": ["101abeec-50d2-415c-bd60-6b01f5634c97", "a8b43d44-7ec4-40ac-a16a-3befd53e8c65", "8273a425-c99f-49b4-9db3-121013f2933d", "b88f77c1-2044-4a9f-b790-573fc3c5c12b", "87039a66-6d37-483a-bff7-4432cc531908", "d2e036ec-ad7f-4f9c-919f-08e95b238f42", "476681b8-7b69-4a34-a6d2-809fc653b8bf", "b6bac391-46af-49b8-ac76-55b9ea0a3f10", "4e342ed1-90d4-4470-95d3-1ca6c00677d9"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n 1.2.8 Beneficial owner \nBeneficial owner is natural person (s) who has /have ultimate control over the funds \nthrough ownership or other means and/or who are the ultimate source of funds for \nthe account. Individuals who have control over an account/fund or having 10% or \nmore shareholding in case of a legal entity shall be considere d as beneficial owner. \n 1.2.9 Tipping Off \nTipping off refers to disclosing information to the parties who are not related to the \ninvestigation of the suspicions or directly alerting a customer that a suspicious \ntransaction report (STR) , suspicious activity report (SAR), threshold transaction \nreport (TTR) has been filed or sharing any other information from which it could be \nreasonably inferred that the bank has submitted or is required to submit an STR2. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n3 presence.1 Shell entity is an entity that has no assets or doe s not have active \nbusiness operati on. \n", "page_label": "9", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "67a8ab21-d0a6-4af5-a14e-ba8258af56fe"}}, "b95327bd-847b-4a2b-8191-09ae7e15d91b": {"node_ids": ["71c4a3bc-6635-44e1-80a1-0e8deef0d767", "2db9c2b8-f85c-463d-9f24-ebd8e9727fd5", "9c6d0c05-1650-4b0e-9a43-a2e793804053", "74d6bdca-a349-435b-9efe-0beaeed635a1", "a3298b90-49cf-4b41-a0d9-17cc2a67baca", "1e4b3a13-4e82-4e88-8799-8d02597cd960", "d72266a3-fc2b-4dc5-9db2-4f7278b30167", "797816ac-6fc2-4453-b294-c5da10cbf4ab", "bca215d8-8f5d-4550-bee2-ca746b34b1c7", "2af8640e-5a53-47c2-a938-9f9695cd7c76", "f8bf4db5-78de-4d72-a5e3-33c83fc8c734", "44888967-ba3f-442c-9d7b-802d7ca43e44", "dc28745b-ce90-456e-83b0-3718ac471b7f", "14eda487-be69-46a6-8dd9-740d35cc7fe3", "6e741f83-1a55-4964-a39a-1735a998cd6d", "40a841c0-27b9-4105-8dc6-3454da3e3bd8"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n 1.4.2 Senior management \nSenior management is responsible to ensure that the procedures, and \nmechanisms related with prevention of ML/TF activities are formulated as per The \nPolicy and are effectively implemented. Senior management must ensure that such \nprocedures and mechanisms are appropriate in a manner where risk management \nand controls are effective and authority and responsibility have been clearly \ncommunicated to all staffs . \n 1.4.3 AML/CFT Unit \nThe Bank shall have a dedicated AML/CFT Unit under Risk Department; A \nManagerial level staff shall be the Chief of the unit3 as Manager AML/CFT . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n4 The BOD shall be timely repo rted with relevant information on ML/TF to make the \ninformed decision on mitigating ML /TF risks. \n", "page_label": "10", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b95327bd-847b-4a2b-8191-09ae7e15d91b"}}, "e4df6583-ff3d-44e3-9497-4f8634359a67": {"node_ids": ["0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a", "4ffb13a4-79e2-4307-ae24-d806775763c3", "6be1f85e-83be-4483-8b86-92c8725356a9", "c271474a-b01e-4dde-806e-7f88aea2f469", "7c252836-73d8-4243-8506-264c8086427a", "72335e90-0cfc-416a-bc36-58b99175d085", "09bc1af2-b295-43b7-91c8-008573646a0d", "468e2ecf-5ca8-4831-a045-858601970464"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . The meeting shall be held at least once \nin every 3 months or as required. \n Senior Deputy Chief Executive Officer shall be coordinator of the committee. In \nabsence of the Coordinator, Deputy Chief Execut ive Officer shall conduct the \nmeeting as Coordinator and in the absence of Deputy Chief Executive Officer , \nremaining members shall decide as required. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n5 c. To evaluate and strengthen the AML control so as to mitigate the ML/TF \nrisks, \nThe Committee shall also review the AML/CFT related reports and forward the \nreport to Asset (Money) Laundering Prevention Committee with necessary \nrecommendations, if deemed necessary . ", "page_label": "11", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "e4df6583-ff3d-44e3-9497-4f8634359a67"}}, "969c4445-d2dd-42b9-a7a2-12b6f64e1700": {"node_ids": ["c6e72421-0c17-4c05-85ce-2010d1df2cea", "603ea3c1-06dc-4f3b-944a-9c6cc9673b9d", "a0fc13ea-7924-4e50-95e1-f43f0559d329", "b1f955b6-bde3-4187-b7ec-0ccca333c31b", "5b57b692-0186-4785-9cda-71e403686f43", "8086fd1e-b2ec-4070-975c-c2361133f6a4", "ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111", "bc11dbf0-462f-4bef-b531-78c07e33d133", "0c284300-d9f9-441d-b582-6e6795221c4e", "1e759376-2456-49fa-a154-1a5e19aad3e9", "cf77eaa3-eda1-41a1-84ee-75ca0759b985", "5622feb7-e8d7-436c-b3da-101d0b4f4f06", "ff3e9c00-eb71-4900-9413-b6deada6e561"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n a. Branch Manag ers / Branch In -charge shall be responsible for \nensuring and executing the task related to their branch in compliance \nto The Policy . \n \n b. Department Heads in Corporate Office and Province Heads should \nimplement ongoing employee training to adequately train all of the \nstaffs in their departments, offices, and branches as per employee\u2019s \nspecific responsibility to ensure effective implementation of this \npolicy. Province Head shall facilitate implementation of this policy and \nmonitor activities performed in all areas in line with this policy in their \nrespective jurisdictions. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n6 1.4.6.1 First line of defense : Business units / front line staff \nThe first line of defense shall identify, asses, and manage the ML/TF risks \narising from the business/accounts in which they are involved, and are \nresponsible for having controls in place to mitigate the risk and promoting \nAML/CFT principles. \n", "page_label": "12", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "969c4445-d2dd-42b9-a7a2-12b6f64e1700"}}, "5ed8c97a-1c6c-4afb-b66d-efdd481672be": {"node_ids": ["32da5209-b7d2-4eb3-8d14-ef013b8d4938", "f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1", "8847a2eb-c347-4971-94f1-45a7f1688aac", "9c608428-da65-4cb9-bb75-fbc5c66ccd01", "e3f05e59-fcfb-46c1-8e98-1e1783599004"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . This officer shall report to the MLRO or the \nAML/CFT Unit. \n 1.4.6.3 Third line of defense : internal audit function. \n The Third Line of Defense will be performed by internal audit. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n7 \ne. Branch /Department AML Officer (Operations In -charge or an official \ndesignated by MLRO in consultation with AML/CFT Committee) shall \nensure that norms of AML/CFT are fulfilled in the \nbranches /departments . ", "page_label": "13", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "5ed8c97a-1c6c-4afb-b66d-efdd481672be"}}, "c1f6107a-8ecb-45d2-bf5d-e5768bef3455": {"node_ids": ["f24a6dc4-2427-4dd3-9bb8-61fe621a59cb", "df0cb8c7-a553-454b-ba68-82ec87b30299", "413faf23-1ff4-4f8e-a48b-d9509c3d23ae", "9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2", "b9707183-c73e-4aee-8864-fee85b148ec9", "90e148e7-14d9-4881-861d-0786b910c721", "c85b5a7b-c07c-456c-b67e-041c52a49a9c", "8fa24c22-6fbd-4ab5-a8df-d0043157c950", "d7f0868b-795a-4340-8ac3-625b21cf4b6f", "7c5c4726-bc4f-48d9-9331-ad444749d3ae", "aec64413-f360-4c95-891e-294655fa24f5"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. The purpose of \nunderstanding its customers is to verify the identity of its customers to safeguard the bank \nfrom being used by criminal elements for ML/TF activities. \n 2.2 KYC Elements \nThe Bank shall incorporate the following four key elements required for KYC: \na. Customer Identification Procedures \nb. Risk Management \nc. Customer Acceptance Policy \nd. Monitoring of transactions \n \n2.2.1 Customer Identification Procedures \nThe bank shall perform customer identification procedures to identify its customers \nwhile onboarding a new customer and throughout the banking relationship with the \ncustomer. The bank shall \na. Obtain all required information necessary to establish the identi ty of a new \ncustomer and the purpose of the transaction with the bank. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n8 CHAPTER 2: CUSTOMER IDENTIFICATION AND DUE \nDILIGENCE \n \n \n2.1 Know Your Customer \nTo m anage ML/TF risks effectively, B ank must understand its customers. ", "page_label": "14", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c1f6107a-8ecb-45d2-bf5d-e5768bef3455"}}, "b85e2633-a0dd-4abd-8398-c44410232847": {"node_ids": ["47be1383-b4c3-4b46-b1bb-612f115cb5cd", "46cb1d52-0f0b-4b17-8e1f-3432aae4826c", "778b8bd0-445d-4c66-8804-9c1e37888ea4", "8acd8464-081a-4d21-a2d8-811bc8a41922", "c895e787-7815-4877-a7df-afab66f0636a", "296c8197-079b-4c2d-b812-f74780c73c32", "a80953f0-5fd7-434d-8fc0-cfd43266c141", "2a7e0776-0b2c-48ed-a2cc-258375452620", "faa27de2-ed4c-48b4-8317-fc0e869a4a36", "463072b0-0ada-437e-bb65-bf0976ef72b3", "4e248107-2035-4199-bc08-c74b49d5fcc6", "cfdfad83-3486-47fc-9d06-18e966e50b7c", "50e9c42c-bb86-4291-a2a7-bd60a71a466e"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n9 ii. Obtain senior management approval for establishing or continuing \nsuch relationships. \n iii. Take reasonable measures to establish the source of wealth and \nsource of fu nds \niv. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n9 ii. ", "page_label": "15", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "b85e2633-a0dd-4abd-8398-c44410232847"}}, "2be49d31-8552-4227-ab21-3c4a73e2771f": {"node_ids": ["5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd", "ff25c099-aa59-464c-a08c-fdb3791ab5dd", "ea4724d4-0293-4e1e-a176-0bea52a3e5f3", "f9cc2420-88fe-404c-b7dc-a64dc68fa7ec", "860c4228-3dfe-4204-8555-d3f93f30e982", "6a65d6cc-b8ef-4b49-a1b9-06501f385281", "deb4207f-47b8-4363-ac6c-c00cf633e9a3", "70207f0b-28b6-4000-9af1-a9751ec388a1", "35b30ee3-83d7-4c50-a533-590b75092687", "b74e5b1c-365c-4a04-b58e-ca8df2f2a812", "dac79022-37f6-466c-99fe-255aa9a4aff6", "a684faf2-d6e7-4094-a1f5-3073e3010969", "b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5", "09d878c5-7b5f-43df-b2fc-17349c286eb7", "e369201a-c028-456e-b33f-5a823cd04c4b", "0862dba7-c437-419d-a67c-a7a19278ee37", "8a6a3656-e862-4e1e-9566-98904db6b57b", "a0f8d230-720d-442f-ae36-25a8a54cfa97", "058fd3d4-efa5-4488-a1c3-74bf09781e86", "9f902caa-3c8a-4c05-b46c-1e1f1df83834"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. The Bank \nshall pay special attention to the ML/TF threats arising from new or \ndeveloping technologies . \n 2.2.2.2 Assessment of internal controls \nThe Bank shall ensure that the process and practices to manage the \ninherent risks identified are proper. For this, the Bank shall rely on internal \naudit and internal compliance testing. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n10 d. Products and services offered \nThe Bank shall identify the High-risk product and delivery channels and \napply appropriate measures to mitigate the risk of ML/TF. ", "page_label": "16", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "2be49d31-8552-4227-ab21-3c4a73e2771f"}}, "7c666861-61bc-4a7d-83a3-c9da6eafba87": {"node_ids": ["15997e69-4974-4fe1-9800-c562eec9b258", "76601a4c-5955-4f68-8fe0-2347f76e0d83", "78a03d23-9f82-4414-be59-a73782dee41c", "97d1c507-fc21-47f4-9eb4-f7321a4c0a77", "b4423dab-675c-4491-9cea-c5384fd18e2b", "5c8c1f58-f167-4b77-aa0e-61d47a8039d7", "7e34500c-dbfa-4e84-8d64-3d1163dd5c48", "a8f88646-e5af-4381-8a33-f2d66d538ffd", "2604e495-b5e9-41b6-bcac-c29ffed09f4c", "8ab04d40-d2ca-4185-9bab-b4c745a49c48", "5285e0af-31bb-4297-9b85-74f17d7939e9", "8fbe5691-8155-4aee-a535-dfeb2a06cf9b", "032cec94-aeb3-436e-a40f-60f21acda04f", "6b7d8b5b-95aa-4bb5-bc55-174503dd4e62", "274dcbca-d18d-4650-a190-c0911bb99942", "4dea95ae-199c-4134-af0a-d58ebfff00f9", "ebec4eac-8275-4125-8b61-3c7cbd201d55", "50b32ea2-6fc6-481c-865a-980bec925996"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n11 terminated. The cu stomer acceptance policy shall take a risk-based approach to \nunderstand and mitigate risk. \n 2.2.3.1 Prohibition of relationship \nThe Bank shall not accept or maintain relationship with the following \nperson/entities: \na. Anonymous or Fictitious customer /accounts. \n Bank shall ensure that no anonymous accounts or accounts that are in \nthe name of fictitious persons are opened or maintained. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n11 terminated. ", "page_label": "17", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "7c666861-61bc-4a7d-83a3-c9da6eafba87"}}, "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144": {"node_ids": ["f2cbf011-bc22-410f-b36e-05f7c6edc459", "346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785", "1c75b713-6f92-4ec8-9218-3bb3e58c4e03", "ccc440cc-471f-40a5-a4b4-2fe156a969fc", "33b8bf66-a163-4af4-8f34-974afdb37833", "364f57dc-fe18-47a9-816d-ea654a4b2b7c", "cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7", "d42c8120-3255-4b13-83d4-eb2cad0d73c0", "0a61de61-47dd-42cd-94be-4467bdc87028", "a11f6bc2-d45c-4302-9f93-15f941acefa1", "b20c38b6-59e4-43a9-9b10-8ef6127ecb04", "ed17db20-b032-4c05-a08d-760554d40e33", "6e13df71-09d7-4d1e-9790-ff7ffdf84823", "d51236fd-2a0c-4de1-b447-a5aca9c8206b"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n i. Those who deal with arma ments. \n The Bank shall not involve in any transactions related with purchase or \nsale of arms. \n \n j. The customers involved in activities prohibited under Nepalese \njurisdiction. \n \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n12 \nh. Those who deal with crypto currency.7 \nThe Bank shall not establish relationship with a customer who deals \nwith crypto currency as there is limited identification and verification of \nparticipants as well as lack of a proper regulator for supervision and \nlegal enforcement regarding crypto currency. \n \n", "page_label": "18", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "23ca9ab8-96d8-4d9a-bdb5-7c2cb8e88144"}}, "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a": {"node_ids": ["464b1f97-e2e7-4c08-831e-26f486e2c433", "58ab7dd7-68b1-4ed3-b40f-38b076c70908", "ae0078e0-7d33-47a4-b481-d98e71589dce", "3f6a626d-e8cb-4481-a77f-848c263aa0a7", "412c18f5-2adf-4945-acb2-777ae502bdc3", "ef4cefad-0d6b-47c8-9cb9-039fb64b5457", "5ccf1886-586d-469b-9c5d-0edcc27c58c9", "fb5057d6-151f-45f4-94e3-0b72ee4db0b1", "6876f76e-e347-4f20-ac56-af1923c786a1", "d1479bee-44ae-4a44-93f5-f3792b1cd94a", "405fb950-67ab-482b-9e74-48979480e5c4"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n g. Each transaction c onducted by high-risk customers \nh. Other provision as prescribed by the Regulator. \n 2.3.1 Types of CDD based on c ustomer risk rating \nThe Bank shall assign customer risk ratings to determine the level of controls \nneeded to be employed to manage the risk, including the type of ongoing \nsuspicious activity monitoring. Following customer due diligence will be applied to \nthe customers categorized under high risk, medium risk, and low risk as per ALPA, \nRules, and NRB directive . \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n13 f. There is suspicion of money laundering or terrorist financing. \n", "page_label": "19", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "20a0e792-3e85-45c2-97ea-cb8bbbb0ef7a"}}, "502b9490-cdda-420f-a8bb-6e31ce16b38f": {"node_ids": ["8d404377-1b77-4704-b523-3dcbd4c8b233", "4d66d061-fd5a-497c-ba1e-a14318f7f516", "0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e", "71b50d05-a9dd-4398-b6af-ea4c37803aef", "60b16a6e-e240-4685-8033-5110a9e2662e", "5293cdfc-2093-4688-848c-c294e9d766ea", "c71e7e12-cedf-4542-b14b-231a8ddcb334", "c575058c-205e-4995-955e-14e1968bfa57", "d72190e5-f2aa-44a6-b790-d25e61ac052d", "b4288da3-3532-4958-8cbb-5f314e568859", "d1691c76-81d3-42d2-8b4b-13216c91266d", "81ec9bf4-9a1f-4c66-ab51-9c83014d037b", "480985cf-845c-4498-9784-3795b988ffbe", "8c831ae1-636c-4638-a199-e71f19d1a116", "b3304b34-b04b-4c3d-bef5-a595f990cd6a", "35050b70-c5a7-48cf-b9e2-650bd0ae7363", "c4ed859d-65f6-4952-9136-e2168eaa364b", "3ee50f81-fa6a-4edb-847c-6ca85593d6a1"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. Transaction monitoring is targeted towards informing the Bank \nto unusual activities in meeting the Bank\u2019s statutory obligations with respect to reporting \npotentially suspicious transactions. \n The Bank shall monitor the transactions based on risk-based approach through an \nautomated system in addition to the exception reports developed internally by the Bank. \n For transaction monitoring, the Bank shall consider customer risk profiles and information \ncollected during the CDD process. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n14 CHAPTER 3: MONITORING AND REPORTING \n \n \n3.1 Transaction monitoring \nTransaction monitoring involves analyzing transactions of the customers of the Bank based \non defined parameters to determine whether such transactions are as per the Bank\u2019s \nknowledge of the customer. ", "page_label": "20", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "502b9490-cdda-420f-a8bb-6e31ce16b38f"}}, "4611b91d-64b2-439e-af0e-f2cc8face9e5": {"node_ids": ["280c0e76-41c0-4264-8a9c-9da2abc3c6ec", "ca6cb905-f47c-401a-bf43-e3a31a4f55da", "90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef", "d64e91df-5c26-4967-b652-9ae074915b33", "6b49d114-f4f4-485d-b910-70d6d6180da0", "44a95309-3132-4d05-80d1-c46a5678b3dc", "1fef1573-f066-4242-a6eb-2564da31ff53", "ad7f3325-40a7-4edc-849c-1cf0a687bd08", "87a116ae-c397-4230-8e39-fae765e6d4dd", "d343ff63-7653-4429-a4f9-d48a41df1b27", "8390024f-9a10-4c45-8477-8f43e6cc772d", "a172593c-f4f9-4d7b-b0ab-e683c8f21c70", "2a580198-957b-4937-9cbc-9c634ba3c008", "e138bd74-d5de-4d81-9ef5-5c4c15f03829", "7d06288f-71e6-4cb6-a44f-6c4a982fc775"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n f. Payable -through Accounts or Pass -through Accounts \nThe Bank shall not allow its customers to directly access the correspondent account to \nconduct business on their own behalf. \n \n g. Use of p ersonal accounts f or business purposes \nThe Bank shall discourage use of personal saving accounts to be used for business \npurposes. \n 3.2 Reporting \n3.2.1 Resubmission Policy \nBank shall not attempt to resubmit any transaction that has already been rejected \ndue to the concern over Sanctions or ML/TF. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n15 e. Downstream Correspondent Banking (Nested Account): The Bank shall not allow \ndown stream correspondent banking service and nested account activities to other \nfinancial institutions. \n \n", "page_label": "21", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "4611b91d-64b2-439e-af0e-f2cc8face9e5"}}, "d6c01188-7f8d-4980-8314-4ed1d637bb69": {"node_ids": ["87cdb9f9-6443-4de6-805e-60fa79892b8c", "5b089c73-d94f-4170-9d23-00175b148dff", "2bedf45a-a532-4f34-af89-5e54ebbb3360", "c4a882e3-5baf-45de-a850-58acb66aaf09", "efa844fa-c6b3-49df-bf77-56953f9df462", "79183a94-0bfd-4e26-b2ac-01b4844777d6", "b90b3dfd-a42f-4419-b97f-f89f1c08ab54"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n 3.2.5 Reporting Obligations \nBank shall generate AML/CFT related reports as per the NRB Directive in \nprescribed format/system and submit the same t o the Regulator, for which the B ank \nshall have effective reporting system so that reports are g enerated and reported on \ntime. \n \n Bank shall develop and implement guidelines on the identification of suspicious \ntransaction based on STR Guidelines issued by FIU, National and International risk \nassessment, and the Bank\u2019s Annual Risk assessment reports so that all staffs - \nespecially dedicated Branch /Department AML Officer - shall be able to identify and \nreport suspicious/unusual transactions to the MLRO or AML/CFT Unit. However, \nthis shall not limit any staff member to speak up and directly report \nsuspicious/unusual transactions to the MLRO . ", "original_text": "Global IME Bank Limited AML / CFT Policy \n16 3.2.4 PEP and adverse screening \nBank shall adopt appropriate mechanism to screen the customer against PEP and \nadverse media list, while establishing and maintaining the relationship, so that the \nenhanced customer due diligence could be performed. \n", "page_label": "22", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "d6c01188-7f8d-4980-8314-4ed1d637bb69"}}, "c15b2c9d-6a7a-4146-813f-f7a124131ae9": {"node_ids": ["4e3e7b84-0d91-4cf7-b805-b232c8b649ba", "81d50026-2523-41c6-9b77-902190f43f7b", "05dec978-9706-4716-ac11-f33bae44ea0b", "713a8421-fb21-41ba-ab14-183e576edcf8", "fe545f00-c6d3-4531-9c21-45cdddb63c6b", "fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a", "9dead0bc-0207-435a-ae20-ce09bcfe8f58", "c7c5137c-0629-4b93-86d0-e670c9f67a27", "8757f6b1-ae55-499f-b25f-de05ab6dda08", "f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7", "d1a21348-e334-4cfd-bec4-dd62abb6f17e", "e04b7813-1ac3-41bd-9d76-1989880984cd", "4d438801-b2bf-411f-977d-f82dd9f153ee", "d906a6e3-7a82-4967-b953-b0fdc66a6e47", "9b99d183-9a8b-43db-b957-6e4913e35169", "329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4", "bc7ed399-c799-4a22-a1b6-e1f003dd5610", "67b55cd7-f8e1-469b-ad4b-03fa99f217a6", "418bdbeb-1337-428f-9947-64b09fbb11d2", "f3fd52ab-6701-4e46-bc50-334d434e5506", "9b6eccff-e7af-41e1-9e66-b386cde7c1c0", "19e66bab-9c92-4328-9ef0-c968ba87545d", "ab51dd03-4549-42e0-8ce6-c7bec4f90dea", "a3543077-dc63-462e-bdde-45a63f52b730"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. Training \nBank staffs, BOD , and shareholders holding 2% and above shares shall be made aware \nof the statutor y and regulatory obligations on AML/CFT in coordination with HRD . The Bank \nshall refresh employees\u2019 knowledge on the practices of ML/TF from time to time with \nindications to t he recognition of suspicious transactions. Awareness on prevention of \nmoney laundering & financing of terrorism shall be raised through a periodic and regular \ntraining to all the staff members including new recruits of the bank about what money \nlaundering & financing of terrorism is, the identification of suspicious transactions, the \nregulatory requirements on prevention of money laundering and financing of terrorism, the \nBank\u2019s policy, procedure , and controls for prevention of money laundering & financing of \nterrorism. \n", "original_text": "Global IME Bank Limited AML / CFT Policy \n17 CHAPTER 4: AWARENESS AND TRAINING \n \n4.1. ", "page_label": "23", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "c15b2c9d-6a7a-4146-813f-f7a124131ae9"}}, "05b0d101-74b5-47fc-9c9e-9f2badf69460": {"node_ids": ["e53f0119-da24-4204-88c5-936fab297322", "4f2cb7ba-803b-414c-8fad-e09bf904bef8", "bd03b071-a4f2-47be-8f28-d03f6308a455", "65cd9328-4671-4d36-8c75-e84b8a97fced", "cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae", "0200d07e-ac4a-4836-a687-85bceb36acac", "216c6559-336b-4dad-9799-4b97091755cc", "22c2f1c7-5c1e-488c-8bac-d5aa917d73ad"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n Similarly, HRD shall conduct Know Your Employee (KYE) procedure and maintain up -to-\ndate information of each employee of the Bank . It shall also monitor the transaction of the \nemployees and if any suspicious nature of activities related to ML/TF is observed it shall \nbe notified/ reported to MLRO (or as designated). \n 4.6. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n18 activiti es shall not be kept hidden and as per the Whistle -blowing Policy of the Bank, it shall \nbe informed to the competent authority. \n", "page_label": "24", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "05b0d101-74b5-47fc-9c9e-9f2badf69460"}}, "9917c9ce-5007-41c0-a3da-0c22199145ca": {"node_ids": ["5cb2ca77-8c68-4eca-ba7b-09fd6f940847", "c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a", "a5d51abe-ea19-4749-aac1-0b15fde47d8c", "8035ab1f-a41e-4fe9-bf09-ec5ca904acef", "a23ebbe3-906f-4680-b1f3-a8fb40303f61", "27461456-384c-47b7-b8c8-98d570467a6d", "aee00e79-c56b-4bd1-8a78-2057cc30c0e8", "724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a", "892abaa6-8499-4327-bb96-06284025b901", "04b9e023-54a9-48bd-b155-eb593f297bdd", "20cb6038-10f9-4d16-b107-1cd06e1e0e6a", "33b4d705-5b0e-44ba-9e0d-a823990bf169", "c887158b-3381-4c4b-acfc-233bf64aebaf", "180e4ce0-e01b-4b8f-bfaf-14189430a48f", "cae614fa-03f8-4886-b62d-3b8e05d62d75", "39cc9373-6da8-4f5a-95c4-4e81f0f83b35", "50f9afff-32fd-4345-a9e5-fb54e7ec2c63", "f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1", "7160204a-9bae-4def-be19-1aaa04593075", "c030132a-f9b1-4ad7-a328-18b6530adb71", "04023cc9-dc58-42e3-b4e5-535bcabfb7a5", "968e9f84-ce3e-43c7-9e73-52ae72a4f8bb", "1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885", "2d5ff229-5b86-4a90-b589-649b7320c30a"], "metadata": {"window": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. AML/CFT Guidelines \nA separate Guidelines document shall supplement this Policy. The Guidelines shall be \nreviewed by the MLRO at least on an annual basis or as and when required and may be \namended/revised as per the requirement with approval of the CEO through AML/CFT \nCommittee. \n 5.2. ", "original_text": "Global IME Bank Limited AML / CFT Policy \n19 CHAPTER 5: MISCELLANEOUS \n \n \n5.1. ", "page_label": "25", "file_name": "AML_CFT_POLICY_20232_5d9dd862d0.pdf", "doc_id": "9917c9ce-5007-41c0-a3da-0c22199145ca"}}, "a2935351-6da3-4318-a839-4ee3ea5fc91d": {"node_ids": ["961c0993-1414-4237-9fcd-5e18abbc1f27"], "metadata": {"window": " \n \n \nMuktinath Temple (Chumig Gyatsa) \nDistrict : Mustang Country : Nepal \nAltitude : 3710 meter Distance : 406 km from Kathmandu \nNearest Airport : Jomsom 200 km from Pokhara \nName in Hindu : Mukti K shetra Name in B uddhist : Chumig Gyatsa \nDivya Desam (premium \ntemples) 106th Shakti Peethams 51st \nGod Worshipped Vishnu \nMuktinath Temple \n\"The holiest of holy Vishnu temple in Mustang \nDistrict of Nepal\" ", "original_text": " \n \n \nMuktinath Temple (Chumig Gyatsa) \nDistrict : Mustang Country : Nepal \nAltitude : 3710 meter Distance : 406 km from Kathmandu \nNearest Airport : Jomsom 200 km from Pokhara \nName in Hindu : Mukti K shetra Name in B uddhist : Chumig Gyatsa \nDivya Desam (premium \ntemples) 106th Shakti Peethams 51st \nGod Worshipped Vishnu \nMuktinath Temple \n\"The holiest of holy Vishnu temple in Mustang \nDistrict of Nepal\" ", "page_label": "1", "file_name": "muktinath.pdf", "doc_id": "a2935351-6da3-4318-a839-4ee3ea5fc91d"}}, "3239c021-9a3d-4f87-97b2-25fd74e9946d": {"node_ids": ["5020b73f-8873-4bc9-a860-984ff814f4ea", "8e2e6e89-ded8-4515-9f9c-53a543c290d3", "a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d", "e5f227b2-6b9f-4596-bd0e-9efb449a11f1", "8648d275-f562-4f15-8b2f-98dbc599a3eb", "9cc69d8d-10c3-4775-a835-b59bc19029c3", "2eee2bd9-d3c6-42b6-a5ba-161c3140627e", "c676c70a-da45-43e0-bd7b-5cdd29aaddac", "323d4d8a-4832-4fba-a5f6-fbc36be4955f", "627f64b5-cc0a-44f2-878d-1f6b1b555992", "2c18f16c-acca-4b17-af67-b8012d776564", "4806f4d4-e0a6-42fe-bab5-a09a31869025"], "metadata": {"window": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. Hindu \nbelieves that lord Vishnu got salvation from curse of Brinda (wife of Jalandhar) here. Therefore he is worshipped as \nMuktinath (Lit. the lord of salvation). ", "original_text": " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nIntroduction: \nMuktinath Temple (Chumig Gyatsa) is symbol of the religious symbiosis between both Hindus and Buddhists. ", "page_label": "2", "file_name": "muktinath.pdf", "doc_id": "3239c021-9a3d-4f87-97b2-25fd74e9946d"}}, "ae456982-10e2-4b03-bc74-eb8b4ba0750a": {"node_ids": ["1dcaf295-e021-4a46-a0b2-b702b52a6625", "6c2e21a2-b490-4b89-bb56-136d64d5176b", "419073dd-6053-457f-883a-053dd428f9b1", "f3d8f307-1cf9-473e-8720-8f1edb18be2d", "6c34ca18-ab01-4b0b-bef7-c148cf014e89", "b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431", "163dc7ca-a294-44fb-9218-c6ed5185d210", "ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e", "2b2ffcc6-21f2-472a-938b-b1df7e9515a0"], "metadata": {"window": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. This temple is covered in one of the famous t rekking route \nof Annapurna Circuit. \n Travel Access: \nOption 01: By Road - 2 nights (Kathmandu - Pokhara - Jomsom - Muktinath) \nMuktinath Temple can be accessed by road way from Kathmandu to Pokhara following the Prithivi Highway after \nthat crossing Beni, Tatopani, Ghasa, Marpha, Jomsom and Kagbeni. \n First halt: Muktinath Yatra via road begins from Pokhara and will be the good idea to spend one overnight which is \n206 km far from Kathmandu, 910 meters above sea level and journey takes around 7 hours. ", "original_text": " \n \n \nLocation: \nMuktinath Temple is located at the laps of snowcapped mountains at Thorong -La mountain pass at an altitude of \n3710 meters above sea level in Mustang district of Nepal. ", "page_label": "3", "file_name": "muktinath.pdf", "doc_id": "ae456982-10e2-4b03-bc74-eb8b4ba0750a"}}, "dc918cd6-dee0-4419-98db-4d7543ec8c3e": {"node_ids": ["028f2cbc-d5a3-4c41-9cd7-ac718eca0b12", "7d9ec202-c582-4890-b9d4-401a2ad0db07", "30b0ca3e-2620-4fe1-b097-72c110d705d1", "0a2374ea-14df-444e-b8fc-a813df7bfa17", "70372725-dd90-49e5-ac9c-37f51dff536c", "c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9", "907087b0-4704-4abb-bf94-b06d63fc3627", "17304c45-6861-4e54-9145-85d48955a89a", "6b970b7f-58be-4c41-be0a-d7d9b07203f0", "d69726f7-c633-4f58-9ce2-20dabee28f66", "2fd2ca3c-d471-42c6-ba5e-259b29a4768b", "9389dd14-1645-4a0c-b5b3-61df42c6bf08", "f350b3ab-7bc7-440a-9d8e-81046830991c", "be0bce66-2562-4787-9f85-5fd437201f25", "0ed5e479-952d-4459-8e88-ecb54e9a8345", "14f74901-ad84-493d-98ef-f6e18569dc84"], "metadata": {"window": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. Roads upt o Beni \u2013 100 km are blacktop and comfortable for the journey \nwhereas next 70 km upto Jomsom are off road. It might take 8/9 hours to reach at Jomsom. Please do not expect for \nthe star hotel here. ", "original_text": " \n \n \nSecond halt: Pokhara to Muktinath by road might needs one night stop at Jomsom which is located at an altitude of \n2734 meters and 170 km far from Pokhara. ", "page_label": "4", "file_name": "muktinath.pdf", "doc_id": "dc918cd6-dee0-4419-98db-4d7543ec8c3e"}}, "20a359f2-e80e-47aa-8cb4-56bba4e6cef4": {"node_ids": ["0881a8f4-0cc8-4880-882e-5c5b4acdaaf8", "de36e662-d776-4bd7-8dc0-835d4c72d550", "30250a1b-e5eb-43e8-ba8c-12d181b2de8b", "7c1e72df-7ff1-4e73-987a-8c8706c5066a", "3eb503e4-29e8-4cde-bfcd-3bfbf280aafc", "36121d44-18fc-4594-a21a-90e168f5082f", "89120f0b-a7fc-4534-819b-3028f03632d4", "9acb9a18-b522-4923-a80f-b5e39002b6ef", "6801aac7-95ab-4b23-ae71-5ba8e456b7a2", "b5ebb767-9e90-4877-b891-cfa65ae8ac8d", "ee27b20c-0d1c-4eed-8b0a-ec42beb60e28", "ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3", "a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9", "9411a935-9ae7-4828-8dde-6bd65f725c38", "2da03df3-b5e4-461e-bb72-d20938ceed7c", "de777270-1445-4579-a17a-882d7f4653f2"], "metadata": {"window": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. Muktinath Temple is in just one and half hour flying \ndistance by helicopter. The helipad is located at Ranipauwa. From here the temple can be reached via 30 minutes \nwalking. ", "original_text": " \n \nOption 03: By Helicopter - 1:30 hours (Kathmandu - Muktinath) \nMuktinath Yatra by helicopter is operated from Kathmandu. ", "page_label": "5", "file_name": "muktinath.pdf", "doc_id": "20a359f2-e80e-47aa-8cb4-56bba4e6cef4"}}}} \ No newline at end of file +{"docstore/data": {"1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d": {"__data__": {"id_": "1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d", "embedding": null, "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n", "original_text": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9a7dd336-5118-472f-b99d-c4c0fa26c21c", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n", "original_text": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n"}, "hash": "f78cab245a11b6dfe302816daeb082980396e1a21cb490e78d2b4daa47e125a6", "class_name": "RelatedNodeInfo"}}, "text": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n", "start_char_idx": 0, "end_char_idx": 504, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9a7dd336-5118-472f-b99d-c4c0fa26c21c": {"__data__": {"id_": "9a7dd336-5118-472f-b99d-c4c0fa26c21c", "embedding": null, "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n", "original_text": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n", "original_text": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "6db682965a2f34a93d6424d0872559f122811b0492c1d9efe0b7c8d60f9624e9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8e356062-c915-43f4-8410-08a1b8c52ee3", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n"}, "hash": "7db31c48b2f80ccbc458576e9bf1ec8faf5e95640bb49d096664b6034c1b0d2a", "class_name": "RelatedNodeInfo"}}, "text": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n", "start_char_idx": 504, "end_char_idx": 558, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e356062-c915-43f4-8410-08a1b8c52ee3": {"__data__": {"id_": "8e356062-c915-43f4-8410-08a1b8c52ee3", "embedding": null, "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9a7dd336-5118-472f-b99d-c4c0fa26c21c", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n", "original_text": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "fef942eb48215271c9121fb4306eced65050ad0906bbc358ff2f87f7b6a12aaa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "719212ab-2bff-4581-b60d-e36578236552", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n"}, "hash": "a637474e8674bb10e663833a89d454be5fce5678486012bf89171714e80ff63d", "class_name": "RelatedNodeInfo"}}, "text": "setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n", "start_char_idx": 558, "end_char_idx": 694, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "719212ab-2bff-4581-b60d-e36578236552": {"__data__": {"id_": "719212ab-2bff-4581-b60d-e36578236552", "embedding": null, "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8e356062-c915-43f4-8410-08a1b8c52ee3", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "e72786bbca13e53c5ffbd2825f1c8e18ced4f5e857b9115e18f6836bb53ea659", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "759232c4-9bd4-48ed-a2ad-f970920ceeec", "node_type": "1", "metadata": {"window": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n"}, "hash": "6cf1ca041ba8562c923da23d84567c5586da0c22f068d964f5eddc2d4c2c4d84", "class_name": "RelatedNodeInfo"}}, "text": "update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n", "start_char_idx": 694, "end_char_idx": 738, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "759232c4-9bd4-48ed-a2ad-f970920ceeec": {"__data__": {"id_": "759232c4-9bd4-48ed-a2ad-f970920ceeec", "embedding": null, "metadata": {"window": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "719212ab-2bff-4581-b60d-e36578236552", "node_type": "1", "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "41051abd04d53412dd43e6b427488739dcf055bcd4ba7fc9ed2c72080444e09b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "67cb5d79-a63d-4b93-a85f-9f897a4ff177", "node_type": "1", "metadata": {"window": "setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "autodiscover_tasks\n()"}, "hash": "72bf3087ac1f5eef01f581dcce2ecc62d4410663bb875dfffa846511fd0c40ac", "class_name": "RelatedNodeInfo"}}, "text": "config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n", "start_char_idx": 738, "end_char_idx": 864, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "67cb5d79-a63d-4b93-a85f-9f897a4ff177": {"__data__": {"id_": "67cb5d79-a63d-4b93-a85f-9f897a4ff177", "embedding": null, "metadata": {"window": "setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "autodiscover_tasks\n()", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "759232c4-9bd4-48ed-a2ad-f970920ceeec", "node_type": "1", "metadata": {"window": "conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n autodiscover_tasks\n()", "original_text": "config_from_object\n(\n'django.conf:settings'\n,\nnamespace\n=\n\"CELERY\"\n)\n#\nCELERY\nBEAT\nSettings\napp.conf.beat_schedule\n=\n{\n}\napp.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "hash": "de300c2170be72597677511cbe9c3b4ead9570dc6b8dbb165160a3636033260f", "class_name": "RelatedNodeInfo"}}, "text": "autodiscover_tasks\n()", "start_char_idx": 864, "end_char_idx": 885, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bf21b013-39f4-4eba-afc8-a33d85670371": {"__data__": {"id_": "bf21b013-39f4-4eba-afc8-a33d85670371", "embedding": null, "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n", "original_text": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d70f2fe5-84f2-47be-a540-e8180a49557a", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "dc0ed81528890b847a99e19a61f039a8f4cbf3f9e6585739e16121a91d576f7b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "968920d7-bd82-4952-95a6-68a06af2bda0", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "request\nimport\nRequest\nfrom\n.\n"}, "hash": "3efed4ebac097a32eb7e92cb21671c90170c4355e5046e136b218331bfc76623", "class_name": "RelatedNodeInfo"}}, "text": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n", "start_char_idx": 0, "end_char_idx": 126, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "968920d7-bd82-4952-95a6-68a06af2bda0": {"__data__": {"id_": "968920d7-bd82-4952-95a6-68a06af2bda0", "embedding": null, "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "request\nimport\nRequest\nfrom\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d70f2fe5-84f2-47be-a540-e8180a49557a", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "dc0ed81528890b847a99e19a61f039a8f4cbf3f9e6585739e16121a91d576f7b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf21b013-39f4-4eba-afc8-a33d85670371", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n", "original_text": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "f82942014fce47a0bd3b7470230155c2e732ae7c56a26b42241061fec2cdc3be", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "73bcd66c-2e87-4ade-be00-4d5267a0e495", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n"}, "hash": "f2ec36861067eaebe42146719811d784c45f0f87efb954e2382370ac588dcb9a", "class_name": "RelatedNodeInfo"}}, "text": "request\nimport\nRequest\nfrom\n.\n", "start_char_idx": 126, "end_char_idx": 156, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "73bcd66c-2e87-4ade-be00-4d5267a0e495": {"__data__": {"id_": "73bcd66c-2e87-4ade-be00-4d5267a0e495", "embedding": null, "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d70f2fe5-84f2-47be-a540-e8180a49557a", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "dc0ed81528890b847a99e19a61f039a8f4cbf3f9e6585739e16121a91d576f7b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "968920d7-bd82-4952-95a6-68a06af2bda0", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "request\nimport\nRequest\nfrom\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "cad720b4c5d46ddb33947d761a5e213351f6835643e38f446a0864eb58e72ebc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9d9af823-92b9-4c61-89b6-9c5c1109e8b0", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n"}, "hash": "826019468a9103f5dde1084398d5ef26e6e85ae44e632096bde2268697f77a7f", "class_name": "RelatedNodeInfo"}}, "text": "models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n", "start_char_idx": 156, "end_char_idx": 212, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9d9af823-92b9-4c61-89b6-9c5c1109e8b0": {"__data__": {"id_": "9d9af823-92b9-4c61-89b6-9c5c1109e8b0", "embedding": null, "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d70f2fe5-84f2-47be-a540-e8180a49557a", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "dc0ed81528890b847a99e19a61f039a8f4cbf3f9e6585739e16121a91d576f7b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "73bcd66c-2e87-4ade-be00-4d5267a0e495", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "993100d902c282d7e6653c2857aa7bbd2349ab671fb9ac7e87b1742b25c98aed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c0f29056-12b9-452a-ba99-b205d18c30d5", "node_type": "1", "metadata": {"window": "request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo"}, "hash": "1c08f23c650725e1649148c00f5ac7e6f90d830bc3ba85ba2f618a6527099bde", "class_name": "RelatedNodeInfo"}}, "text": "getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n", "start_char_idx": 212, "end_char_idx": 325, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c0f29056-12b9-452a-ba99-b205d18c30d5": {"__data__": {"id_": "c0f29056-12b9-452a-ba99-b205d18c30d5", "embedding": null, "metadata": {"window": "request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d70f2fe5-84f2-47be-a540-e8180a49557a", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "dc0ed81528890b847a99e19a61f039a8f4cbf3f9e6585739e16121a91d576f7b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9d9af823-92b9-4c61-89b6-9c5c1109e8b0", "node_type": "1", "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "original_text": "getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "hash": "257aac1d4575b3ae518724c761c83d5f0cd93a87c4d6d2e96c9691faed839d85", "class_name": "RelatedNodeInfo"}}, "text": "info\n(\nf\n'Total\nsum:\n{\nresult\n}\n'\n)\nreturn\nx\n+\ny\napp/view .py\nresult\n=\nadd\n.delay(\n4\n,\n4\n)\nCommands:\ncelery\n-A\npricetracker\nworker\n--pool=solo\n-l\ninfo\ncelery\n-A\npricetracker\nbeat\n-l\ninfo", "start_char_idx": 325, "end_char_idx": 511, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "243b2cae-0971-452c-aa04-1d071f92fa18": {"__data__": {"id_": "243b2cae-0971-452c-aa04-1d071f92fa18", "embedding": null, "metadata": {"window": "In\nWSL\nsudo\napt-get\ninstall\nredis-server\nsudo\nservice\nredis-server\nstatus\nsudo\nservice\nredis-server\nstart\nsudo\nservice\nredis-server\nstop\nBasic\nCommands\nSET\nkeyname\n\u201cvalue\u201d\nGET\nkeyname\nDEL\nKeyname\nMSET\nkey1\nvalue1\nkey2\nvalue2\nkey3\nvalue3\nMGET\nkey1\nkey2\nkey3\nGETRANGE\nkey\n0\n3\nGETRANGE\nkey\n-3\n-1\nSETRANGE\nkey\n2\nabc\nDECR\nkey1\nINCRBY\nkey\n5\nDECRBY\nkey\n5\nKEY\n*\nSet\nkey\nvalue\nget\n", "original_text": "In\nWSL\nsudo\napt-get\ninstall\nredis-server\nsudo\nservice\nredis-server\nstatus\nsudo\nservice\nredis-server\nstart\nsudo\nservice\nredis-server\nstop\nBasic\nCommands\nSET\nkeyname\n\u201cvalue\u201d\nGET\nkeyname\nDEL\nKeyname\nMSET\nkey1\nvalue1\nkey2\nvalue2\nkey3\nvalue3\nMGET\nkey1\nkey2\nkey3\nGETRANGE\nkey\n0\n3\nGETRANGE\nkey\n-3\n-1\nSETRANGE\nkey\n2\nabc\nDECR\nkey1\nINCRBY\nkey\n5\nDECRBY\nkey\n5\nKEY\n*\nSet\nkey\nvalue\nget\n", "page_label": "1", "file_name": "Redis.pdf", "doc_id": "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Redis.pdf", "doc_id": "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed"}, "hash": "47df0dceffab5a6e1f129f9a60b9aa0f1b5b3257b7aac31292b90d4821dd3db1", "class_name": "RelatedNodeInfo"}}, "text": "In\nWSL\nsudo\napt-get\ninstall\nredis-server\nsudo\nservice\nredis-server\nstatus\nsudo\nservice\nredis-server\nstart\nsudo\nservice\nredis-server\nstop\nBasic\nCommands\nSET\nkeyname\n\u201cvalue\u201d\nGET\nkeyname\nDEL\nKeyname\nMSET\nkey1\nvalue1\nkey2\nvalue2\nkey3\nvalue3\nMGET\nkey1\nkey2\nkey3\nGETRANGE\nkey\n0\n3\nGETRANGE\nkey\n-3\n-1\nSETRANGE\nkey\n2\nabc\nDECR\nkey1\nINCRBY\nkey\n5\nDECRBY\nkey\n5\nKEY\n*\nSet\nkey\nvalue\nget\n", "start_char_idx": 0, "end_char_idx": 372, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e60c684-f896-4dea-9bd7-7d27c5f299a8": {"__data__": {"id_": "7e60c684-f896-4dea-9bd7-7d27c5f299a8", "embedding": null, "metadata": {"window": "Sets\nSadd\nSrem\nSunion\nkey1\nkey2\nSismember\nkey\nvalue\nTypes\nSet\nList\nHash\nHSET\nbooks:1\nauthor\n\u201cauthorname\u201d\nHSET\nbooks:1\ntitle\n\u201ctitlename\u201d\nHset\nbooks:2\nfield\nvalue\nfield\nvalue\nSorted\nZADD\nbooks\n7\n\"dasf\"\n2\n\"dasv\"\n9\n'fasdfdas'\nJSON\nJSON.SET\nauthors:1\n$\u2019{\n\u201cName\u201d:\u201ddsadsvaf\u201d,\n\u201cAge\u201d:\u201ddsaf\u201d,\n\u2018Books\u2019:[\n{\n\u201cTitle\u201d:\u201ddsav\u201d,\n\u2018rating\u2019:\u2019vdsfdv\u2019,\n},\n{\n\u201cTitle\u201d:\u201ddsav\u201d,", "original_text": "Sets\nSadd\nSrem\nSunion\nkey1\nkey2\nSismember\nkey\nvalue\nTypes\nSet\nList\nHash\nHSET\nbooks:1\nauthor\n\u201cauthorname\u201d\nHSET\nbooks:1\ntitle\n\u201ctitlename\u201d\nHset\nbooks:2\nfield\nvalue\nfield\nvalue\nSorted\nZADD\nbooks\n7\n\"dasf\"\n2\n\"dasv\"\n9\n'fasdfdas'\nJSON\nJSON.SET\nauthors:1\n$\u2019{\n\u201cName\u201d:\u201ddsadsvaf\u201d,\n\u201cAge\u201d:\u201ddsaf\u201d,\n\u2018Books\u2019:[\n{\n\u201cTitle\u201d:\u201ddsav\u201d,\n\u2018rating\u2019:\u2019vdsfdv\u2019,\n},\n{\n\u201cTitle\u201d:\u201ddsav\u201d,", "page_label": "2", "file_name": "Redis.pdf", "doc_id": "a6f214f7-4ed5-4554-9667-3a05dd0a7a69"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a6f214f7-4ed5-4554-9667-3a05dd0a7a69", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Redis.pdf", "doc_id": "a6f214f7-4ed5-4554-9667-3a05dd0a7a69"}, "hash": "afbf53b165a2246eefb31f80e9648ae8cc23a6a31ca3a92be8e683ccc5c1f66c", "class_name": "RelatedNodeInfo"}}, "text": "Sets\nSadd\nSrem\nSunion\nkey1\nkey2\nSismember\nkey\nvalue\nTypes\nSet\nList\nHash\nHSET\nbooks:1\nauthor\n\u201cauthorname\u201d\nHSET\nbooks:1\ntitle\n\u201ctitlename\u201d\nHset\nbooks:2\nfield\nvalue\nfield\nvalue\nSorted\nZADD\nbooks\n7\n\"dasf\"\n2\n\"dasv\"\n9\n'fasdfdas'\nJSON\nJSON.SET\nauthors:1\n$\u2019{\n\u201cName\u201d:\u201ddsadsvaf\u201d,\n\u201cAge\u201d:\u201ddsaf\u201d,\n\u2018Books\u2019:[\n{\n\u201cTitle\u201d:\u201ddsav\u201d,\n\u2018rating\u2019:\u2019vdsfdv\u2019,\n},\n{\n\u201cTitle\u201d:\u201ddsav\u201d,", "start_char_idx": 0, "end_char_idx": 350, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95c10e98-6535-4758-ac9c-cdce1ed37540": {"__data__": {"id_": "95c10e98-6535-4758-ac9c-cdce1ed37540", "embedding": null, "metadata": {"window": "\u2018rating\u2019:\u2019vdsfdv\u2019,\n}\n]\n}\u2019\nJSON.GET\nauthors:1\n$.name", "original_text": "\u2018rating\u2019:\u2019vdsfdv\u2019,\n}\n]\n}\u2019\nJSON.GET\nauthors:1\n$.name", "page_label": "3", "file_name": "Redis.pdf", "doc_id": "91563704-8392-4968-ba86-b66551507609"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "91563704-8392-4968-ba86-b66551507609", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Redis.pdf", "doc_id": "91563704-8392-4968-ba86-b66551507609"}, "hash": "3363878293e2efcd514726d9b57978951d06062cc1eb2afdd6f2c192e6f5fafb", "class_name": "RelatedNodeInfo"}}, "text": "\u2018rating\u2019:\u2019vdsfdv\u2019,\n}\n]\n}\u2019\nJSON.GET\nauthors:1\n$.name", "start_char_idx": 0, "end_char_idx": 51, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "13b8d581-8998-407a-86e8-4f1a70456028": {"__data__": {"id_": "13b8d581-8998-407a-86e8-4f1a70456028", "embedding": null, "metadata": {"window": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. - \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "original_text": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. ", "file_name": "conda-4.14_ocr.docx", "doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3e116485-f52b-48d9-8072-b57ca300433d", "node_type": "4", "metadata": {"file_name": "conda-4.14_ocr.docx", "doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "hash": "27d0ddf368c4a796924b8f4395baf455ec231d2ca976aa5682b9073535c84497", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a35cb220-4533-42b3-a062-56ea0cf37bc0", "node_type": "1", "metadata": {"window": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. - \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "original_text": "- \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,"}, "hash": "79cdedcd029b4384d8918e7c0544965b564cf4c54d88a900bbc5294e58164dcf", "class_name": "RelatedNodeInfo"}}, "text": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. ", "start_char_idx": 0, "end_char_idx": 54, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a35cb220-4533-42b3-a062-56ea0cf37bc0": {"__data__": {"id_": "a35cb220-4533-42b3-a062-56ea0cf37bc0", "embedding": null, "metadata": {"window": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. - \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "original_text": "- \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "file_name": "conda-4.14_ocr.docx", "doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "3e116485-f52b-48d9-8072-b57ca300433d", "node_type": "4", "metadata": {"file_name": "conda-4.14_ocr.docx", "doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "hash": "27d0ddf368c4a796924b8f4395baf455ec231d2ca976aa5682b9073535c84497", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "13b8d581-8998-407a-86e8-4f1a70456028", "node_type": "1", "metadata": {"window": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. - \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "original_text": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. ", "file_name": "conda-4.14_ocr.docx", "doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "hash": "3fa69ec63a8dd3b836cd616b1c1391a3e80aa0271b1ee25b752d7937d08018c4", "class_name": "RelatedNodeInfo"}}, "text": "- \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "start_char_idx": 54, "end_char_idx": 160, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/metadata": {"1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d": {"doc_hash": "6db682965a2f34a93d6424d0872559f122811b0492c1d9efe0b7c8d60f9624e9", "ref_doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "9a7dd336-5118-472f-b99d-c4c0fa26c21c": {"doc_hash": "fef942eb48215271c9121fb4306eced65050ad0906bbc358ff2f87f7b6a12aaa", "ref_doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "8e356062-c915-43f4-8410-08a1b8c52ee3": {"doc_hash": "e72786bbca13e53c5ffbd2825f1c8e18ced4f5e857b9115e18f6836bb53ea659", "ref_doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "719212ab-2bff-4581-b60d-e36578236552": {"doc_hash": "41051abd04d53412dd43e6b427488739dcf055bcd4ba7fc9ed2c72080444e09b", "ref_doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "759232c4-9bd4-48ed-a2ad-f970920ceeec": {"doc_hash": "de300c2170be72597677511cbe9c3b4ead9570dc6b8dbb165160a3636033260f", "ref_doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "67cb5d79-a63d-4b93-a85f-9f897a4ff177": {"doc_hash": "2a077c6dd854e63c49efc46264a2fd1f11c9597091cffa4a003f1c80131a9eb6", "ref_doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}, "6158d5cb-d1f1-4723-a60d-a49b65814d47": {"doc_hash": "5a922b98e496146e0a4495d5fc9a94add5d91347d5153a2a52b544e21860f6ac"}, "bf21b013-39f4-4eba-afc8-a33d85670371": {"doc_hash": "f82942014fce47a0bd3b7470230155c2e732ae7c56a26b42241061fec2cdc3be", "ref_doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "968920d7-bd82-4952-95a6-68a06af2bda0": {"doc_hash": "cad720b4c5d46ddb33947d761a5e213351f6835643e38f446a0864eb58e72ebc", "ref_doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "73bcd66c-2e87-4ade-be00-4d5267a0e495": {"doc_hash": "993100d902c282d7e6653c2857aa7bbd2349ab671fb9ac7e87b1742b25c98aed", "ref_doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "9d9af823-92b9-4c61-89b6-9c5c1109e8b0": {"doc_hash": "257aac1d4575b3ae518724c761c83d5f0cd93a87c4d6d2e96c9691faed839d85", "ref_doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "c0f29056-12b9-452a-ba99-b205d18c30d5": {"doc_hash": "68f15a58b6af06088a5f8527e195338f3b4f5d21f65280f416b715d93906f93c", "ref_doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}, "d70f2fe5-84f2-47be-a540-e8180a49557a": {"doc_hash": "dc0ed81528890b847a99e19a61f039a8f4cbf3f9e6585739e16121a91d576f7b"}, "243b2cae-0971-452c-aa04-1d071f92fa18": {"doc_hash": "6b3cc2640607aff646b0469364cdce368f52ab6b4c1d556e222beb841c4305d1", "ref_doc_id": "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed"}, "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed": {"doc_hash": "47df0dceffab5a6e1f129f9a60b9aa0f1b5b3257b7aac31292b90d4821dd3db1"}, "7e60c684-f896-4dea-9bd7-7d27c5f299a8": {"doc_hash": "cb21936ab9130041a8b1756a781b1de0796dc58893d3b0320baccec1a17ff0d3", "ref_doc_id": "a6f214f7-4ed5-4554-9667-3a05dd0a7a69"}, "a6f214f7-4ed5-4554-9667-3a05dd0a7a69": {"doc_hash": "afbf53b165a2246eefb31f80e9648ae8cc23a6a31ca3a92be8e683ccc5c1f66c"}, "95c10e98-6535-4758-ac9c-cdce1ed37540": {"doc_hash": "c3eae7d4a0fc42872ce1cbbfaf68a563a6391e7dad9385d6c522d5c7581198d7", "ref_doc_id": "91563704-8392-4968-ba86-b66551507609"}, "91563704-8392-4968-ba86-b66551507609": {"doc_hash": "3363878293e2efcd514726d9b57978951d06062cc1eb2afdd6f2c192e6f5fafb"}, "13b8d581-8998-407a-86e8-4f1a70456028": {"doc_hash": "3fa69ec63a8dd3b836cd616b1c1391a3e80aa0271b1ee25b752d7937d08018c4", "ref_doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "a35cb220-4533-42b3-a062-56ea0cf37bc0": {"doc_hash": "f062329beed4b8c42c00cbf0fda8dda472ff21601fbb0a48bb91430ea5dc33f1", "ref_doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}, "3e116485-f52b-48d9-8072-b57ca300433d": {"doc_hash": "27d0ddf368c4a796924b8f4395baf455ec231d2ca976aa5682b9073535c84497"}}, "docstore/ref_doc_info": {"6158d5cb-d1f1-4723-a60d-a49b65814d47": {"node_ids": ["1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d", "9a7dd336-5118-472f-b99d-c4c0fa26c21c", "8e356062-c915-43f4-8410-08a1b8c52ee3", "719212ab-2bff-4581-b60d-e36578236552", "759232c4-9bd4-48ed-a2ad-f970920ceeec", "67cb5d79-a63d-4b93-a85f-9f897a4ff177"], "metadata": {"window": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n conf\nimport\nsettings\nimport\nos\n#settings\nos\n.environ.\n setdefault\n(\n\"DJANGO_SETTINGS_MODULE\"\n,\n\"pricetracker.settings\"\n)\napp\n=\nCelery\n(\n\"pricetracker\"\n)\napp.conf.enable_utc\n=\nFalse\napp.conf.\n update\n(\ntimezone\n=\n'Asia/Kathmandu'\n)\napp.\n", "original_text": "In\nproject/setting.py\nCELERY_BROKER_URL\n=\n'redis://localhost:6379'\n#\nCELERY_ACCEPT_CONTENT\n=\n['application/json']\n#\nCELERY_RESULT_SERIALIZER\n=\n'json'\n#\nCELERY_TASK_SERIALIZER\n=\n'json'\nCELERY_RESULT_BACKEND\n=\n'redis://localhost:6379'\nCELERY_TIMEZONE\n=\n'Asia/Kathmandu'\nCELERY_BEAT_SCHEDULE\n=\n{\n'task-trackprice'\n:{\n'task'\n:\n'tracker.tasks.add'\n,\n'schedule'\n:\n10.0\n,\n'args'\n:(\n4\n,\n4\n),\n}\n}\npeoject/Celery .py\nfrom\n__future__\nimport\nabsolute_import\n,unicode_literals\nfrom\ncelery\nimport\nCelery\nfrom\ndjango\n.\n", "page_label": "1", "file_name": "Celery.pdf", "doc_id": "6158d5cb-d1f1-4723-a60d-a49b65814d47"}}, "d70f2fe5-84f2-47be-a540-e8180a49557a": {"node_ids": ["bf21b013-39f4-4eba-afc8-a33d85670371", "968920d7-bd82-4952-95a6-68a06af2bda0", "73bcd66c-2e87-4ade-be00-4d5267a0e495", "9d9af823-92b9-4c61-89b6-9c5c1109e8b0", "c0f29056-12b9-452a-ba99-b205d18c30d5"], "metadata": {"window": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n request\nimport\nRequest\nfrom\n.\n models\nimport\nProduct\nimport\nlogging\nlogger\n=\nlogging\n.\n getLogger\n(__name__)\n@shared_task\ndef\nadd\n(\nx\n,\ny\n):\nprint\n(\nf\n'total\nsum\n=\n{\nx\n+\ny\n}\n'\n)\nresult\n=\nx\n+\ny\nlogger.\n", "original_text": "app/task.py\nfrom\n__future__\nimport\nabsolute_import,\nunicode_literals\nimport\ntime\nfrom\ncelery\nimport\nshared_task\nfrom\nurllib\n.\n", "page_label": "2", "file_name": "Celery.pdf", "doc_id": "d70f2fe5-84f2-47be-a540-e8180a49557a"}}, "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed": {"node_ids": ["243b2cae-0971-452c-aa04-1d071f92fa18"], "metadata": {"window": "In\nWSL\nsudo\napt-get\ninstall\nredis-server\nsudo\nservice\nredis-server\nstatus\nsudo\nservice\nredis-server\nstart\nsudo\nservice\nredis-server\nstop\nBasic\nCommands\nSET\nkeyname\n\u201cvalue\u201d\nGET\nkeyname\nDEL\nKeyname\nMSET\nkey1\nvalue1\nkey2\nvalue2\nkey3\nvalue3\nMGET\nkey1\nkey2\nkey3\nGETRANGE\nkey\n0\n3\nGETRANGE\nkey\n-3\n-1\nSETRANGE\nkey\n2\nabc\nDECR\nkey1\nINCRBY\nkey\n5\nDECRBY\nkey\n5\nKEY\n*\nSet\nkey\nvalue\nget\n", "original_text": "In\nWSL\nsudo\napt-get\ninstall\nredis-server\nsudo\nservice\nredis-server\nstatus\nsudo\nservice\nredis-server\nstart\nsudo\nservice\nredis-server\nstop\nBasic\nCommands\nSET\nkeyname\n\u201cvalue\u201d\nGET\nkeyname\nDEL\nKeyname\nMSET\nkey1\nvalue1\nkey2\nvalue2\nkey3\nvalue3\nMGET\nkey1\nkey2\nkey3\nGETRANGE\nkey\n0\n3\nGETRANGE\nkey\n-3\n-1\nSETRANGE\nkey\n2\nabc\nDECR\nkey1\nINCRBY\nkey\n5\nDECRBY\nkey\n5\nKEY\n*\nSet\nkey\nvalue\nget\n", "page_label": "1", "file_name": "Redis.pdf", "doc_id": "9a84f96c-b223-4b26-8ccf-6dc9515ce9ed"}}, "a6f214f7-4ed5-4554-9667-3a05dd0a7a69": {"node_ids": ["7e60c684-f896-4dea-9bd7-7d27c5f299a8"], "metadata": {"window": "Sets\nSadd\nSrem\nSunion\nkey1\nkey2\nSismember\nkey\nvalue\nTypes\nSet\nList\nHash\nHSET\nbooks:1\nauthor\n\u201cauthorname\u201d\nHSET\nbooks:1\ntitle\n\u201ctitlename\u201d\nHset\nbooks:2\nfield\nvalue\nfield\nvalue\nSorted\nZADD\nbooks\n7\n\"dasf\"\n2\n\"dasv\"\n9\n'fasdfdas'\nJSON\nJSON.SET\nauthors:1\n$\u2019{\n\u201cName\u201d:\u201ddsadsvaf\u201d,\n\u201cAge\u201d:\u201ddsaf\u201d,\n\u2018Books\u2019:[\n{\n\u201cTitle\u201d:\u201ddsav\u201d,\n\u2018rating\u2019:\u2019vdsfdv\u2019,\n},\n{\n\u201cTitle\u201d:\u201ddsav\u201d,", "original_text": "Sets\nSadd\nSrem\nSunion\nkey1\nkey2\nSismember\nkey\nvalue\nTypes\nSet\nList\nHash\nHSET\nbooks:1\nauthor\n\u201cauthorname\u201d\nHSET\nbooks:1\ntitle\n\u201ctitlename\u201d\nHset\nbooks:2\nfield\nvalue\nfield\nvalue\nSorted\nZADD\nbooks\n7\n\"dasf\"\n2\n\"dasv\"\n9\n'fasdfdas'\nJSON\nJSON.SET\nauthors:1\n$\u2019{\n\u201cName\u201d:\u201ddsadsvaf\u201d,\n\u201cAge\u201d:\u201ddsaf\u201d,\n\u2018Books\u2019:[\n{\n\u201cTitle\u201d:\u201ddsav\u201d,\n\u2018rating\u2019:\u2019vdsfdv\u2019,\n},\n{\n\u201cTitle\u201d:\u201ddsav\u201d,", "page_label": "2", "file_name": "Redis.pdf", "doc_id": "a6f214f7-4ed5-4554-9667-3a05dd0a7a69"}}, "91563704-8392-4968-ba86-b66551507609": {"node_ids": ["95c10e98-6535-4758-ac9c-cdce1ed37540"], "metadata": {"window": "\u2018rating\u2019:\u2019vdsfdv\u2019,\n}\n]\n}\u2019\nJSON.GET\nauthors:1\n$.name", "original_text": "\u2018rating\u2019:\u2019vdsfdv\u2019,\n}\n]\n}\u2019\nJSON.GET\nauthors:1\n$.name", "page_label": "3", "file_name": "Redis.pdf", "doc_id": "91563704-8392-4968-ba86-b66551507609"}}, "3e116485-f52b-48d9-8072-b57ca300433d": {"node_ids": ["13b8d581-8998-407a-86e8-4f1a70456028", "a35cb220-4533-42b3-a062-56ea0cf37bc0"], "metadata": {"window": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. - \n\n\n , , , , , , \n\ns \n\n\n , , , , , , , , , , , , \n\n \n\n , , , , , , , , , , , ,", "original_text": "s \n\n\n , , , , , , \n\n \n\n , , , , , , \n\n1 \ny. ", "file_name": "conda-4.14_ocr.docx", "doc_id": "3e116485-f52b-48d9-8072-b57ca300433d"}}}} \ No newline at end of file diff --git a/local_data/private_gpt/index_store.json b/local_data/private_gpt/index_store.json index 9d02951c..63f176cb 100644 --- a/local_data/private_gpt/index_store.json +++ b/local_data/private_gpt/index_store.json @@ -1 +1 @@ -{"index_store/data": {"33fb1cbc-3e5e-4c1c-826c-fc331c85bc2a": {"__type__": "vector_store", "__data__": "{\"index_id\": \"33fb1cbc-3e5e-4c1c-826c-fc331c85bc2a\", \"summary\": null, \"nodes_dict\": {\"6a631852-fb8e-4ca6-8cb0-1e3b7b881be0\": \"6a631852-fb8e-4ca6-8cb0-1e3b7b881be0\", \"5494819d-a99c-4902-ac0a-ae3353796805\": \"5494819d-a99c-4902-ac0a-ae3353796805\", \"c2c51f1a-3c4c-4f7c-b814-4da4ef71765b\": \"c2c51f1a-3c4c-4f7c-b814-4da4ef71765b\", \"24a22607-3347-48a6-ba9e-d72156f02a9b\": \"24a22607-3347-48a6-ba9e-d72156f02a9b\", \"83143d31-b3ca-4cbc-bfc9-1dab636c966a\": \"83143d31-b3ca-4cbc-bfc9-1dab636c966a\", \"68a75094-0a21-47c5-b93e-c35a8d18d947\": \"68a75094-0a21-47c5-b93e-c35a8d18d947\", \"d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21\": \"d0f5d94a-a64e-4cd1-b52d-9fb0f2113a21\", \"b02533b8-c391-4c12-b275-64526272c0bf\": \"b02533b8-c391-4c12-b275-64526272c0bf\", \"d028ff1f-c35d-46cc-bd7f-0ea3a655e513\": \"d028ff1f-c35d-46cc-bd7f-0ea3a655e513\", \"83509f26-a88a-45a3-b0cd-4db3cdca12ae\": \"83509f26-a88a-45a3-b0cd-4db3cdca12ae\", \"45e2c9d6-f52d-456d-b335-2ff8a3efc624\": \"45e2c9d6-f52d-456d-b335-2ff8a3efc624\", \"f4dde1b9-a171-4ba5-84f9-f033722675e0\": \"f4dde1b9-a171-4ba5-84f9-f033722675e0\", \"f6e1d1a5-cf15-41ab-9d85-c1884305d548\": \"f6e1d1a5-cf15-41ab-9d85-c1884305d548\", \"1564a509-3858-4618-8b3e-f251f2d7eb84\": \"1564a509-3858-4618-8b3e-f251f2d7eb84\", \"866a4b6f-aee8-47d9-be5d-feaa3acad45b\": \"866a4b6f-aee8-47d9-be5d-feaa3acad45b\", \"5250640b-2a90-4a3f-beae-e9c425b2e409\": \"5250640b-2a90-4a3f-beae-e9c425b2e409\", \"f09ad18b-809e-48c1-9594-08c0e7cd94e8\": \"f09ad18b-809e-48c1-9594-08c0e7cd94e8\", \"27006bda-d38e-440b-9b44-51cb0c237139\": \"27006bda-d38e-440b-9b44-51cb0c237139\", \"b83b8665-b20a-40cd-8635-744eb32f0865\": \"b83b8665-b20a-40cd-8635-744eb32f0865\", \"cb949682-7cf9-433d-a818-d9095bc087fc\": \"cb949682-7cf9-433d-a818-d9095bc087fc\", \"e8aaccc0-ad4a-4d97-a3cc-ede7c776cbe1\": \"e8aaccc0-ad4a-4d97-a3cc-ede7c776cbe1\", \"58e7818c-f650-401b-9c01-7d3905c2407b\": \"58e7818c-f650-401b-9c01-7d3905c2407b\", \"ddec1dd2-5542-4cf6-9516-364a188cb50c\": \"ddec1dd2-5542-4cf6-9516-364a188cb50c\", \"3d634f4a-6464-4604-b2ce-c9c1644b3d6e\": \"3d634f4a-6464-4604-b2ce-c9c1644b3d6e\", \"a07eb1c6-055b-4024-b693-e46624363a24\": \"a07eb1c6-055b-4024-b693-e46624363a24\", \"7b7b6905-0f25-4a92-8974-653add4ae317\": \"7b7b6905-0f25-4a92-8974-653add4ae317\", \"e1333b08-9d0d-4c3b-a8cd-f51cb20d7314\": \"e1333b08-9d0d-4c3b-a8cd-f51cb20d7314\", \"4fe7d6bf-eb33-493b-8b7a-23f0c94b5153\": \"4fe7d6bf-eb33-493b-8b7a-23f0c94b5153\", \"7da8e5a7-784b-4f29-84f7-8d458417c35e\": \"7da8e5a7-784b-4f29-84f7-8d458417c35e\", \"22465b8a-248a-4772-ad2a-fbd03e55b3bf\": \"22465b8a-248a-4772-ad2a-fbd03e55b3bf\", \"0ecb0ff8-e372-4eaa-8208-e819b5a1714b\": \"0ecb0ff8-e372-4eaa-8208-e819b5a1714b\", \"192d43fd-b604-4e93-accc-cc6f5d07cdf9\": \"192d43fd-b604-4e93-accc-cc6f5d07cdf9\", \"6f129632-3f87-44a7-989c-ec9c49d59bc6\": \"6f129632-3f87-44a7-989c-ec9c49d59bc6\", \"f4706536-f8da-4795-92dc-d4c1071a07cd\": \"f4706536-f8da-4795-92dc-d4c1071a07cd\", \"cbaafd8e-06d1-4576-9bc1-d93dad3170b8\": \"cbaafd8e-06d1-4576-9bc1-d93dad3170b8\", \"5b642f65-112a-43d4-9b14-335caa53070d\": \"5b642f65-112a-43d4-9b14-335caa53070d\", \"65481478-3f66-4cc5-9784-6b8c54661654\": \"65481478-3f66-4cc5-9784-6b8c54661654\", \"0026c333-d487-4ad1-82eb-c7465cb926b8\": \"0026c333-d487-4ad1-82eb-c7465cb926b8\", \"65f5353c-1f93-436f-95b4-4aa3f60e03fc\": \"65f5353c-1f93-436f-95b4-4aa3f60e03fc\", \"4436eb3c-9c54-4893-8d62-32bb42cb46ef\": \"4436eb3c-9c54-4893-8d62-32bb42cb46ef\", \"dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e\": \"dbe20a2a-1fc4-47c8-b82d-8cc0d59ce39e\", \"8b7b9878-5693-439a-a23e-4cc6d1493350\": \"8b7b9878-5693-439a-a23e-4cc6d1493350\", \"95f99dab-63db-4b78-826d-696a8ff66ab9\": \"95f99dab-63db-4b78-826d-696a8ff66ab9\", \"bc64b8ee-928f-4d28-876b-fd773677e984\": \"bc64b8ee-928f-4d28-876b-fd773677e984\", \"3abde7ec-f74a-4629-b17d-67475d92da1f\": \"3abde7ec-f74a-4629-b17d-67475d92da1f\", \"7fdda8db-5310-487c-8bf5-6fa4fd27794d\": \"7fdda8db-5310-487c-8bf5-6fa4fd27794d\", \"9a94a297-d0f9-4898-9f65-0144aad5c26f\": \"9a94a297-d0f9-4898-9f65-0144aad5c26f\", \"3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07\": \"3bc654c1-d5f3-4b58-8b5a-99a5ac5b7e07\", \"cadbd380-380b-4f8e-929d-4bb1555aeb54\": \"cadbd380-380b-4f8e-929d-4bb1555aeb54\", \"ecd2acb0-bb8e-4f4d-9780-e3281c776920\": \"ecd2acb0-bb8e-4f4d-9780-e3281c776920\", \"078d64c7-eccc-4149-9a17-fb2926c65eb9\": \"078d64c7-eccc-4149-9a17-fb2926c65eb9\", \"69bc62b7-4d5c-452a-9b92-270911d4a0fe\": \"69bc62b7-4d5c-452a-9b92-270911d4a0fe\", \"28a8185c-f125-4827-b001-61b93cd4bcc4\": \"28a8185c-f125-4827-b001-61b93cd4bcc4\", \"f7144879-9b5e-4f29-bbf9-386cb07ef6fa\": \"f7144879-9b5e-4f29-bbf9-386cb07ef6fa\", \"c511a92a-648f-4757-a9ad-d7f0323a2184\": \"c511a92a-648f-4757-a9ad-d7f0323a2184\", \"1e866be3-ffe5-46cf-b4a3-8ac41f938b69\": \"1e866be3-ffe5-46cf-b4a3-8ac41f938b69\", \"b6af877d-2390-4bd8-a6d2-6ed4a772215d\": \"b6af877d-2390-4bd8-a6d2-6ed4a772215d\", \"d0b11037-1945-40ec-8ab3-47921d1fadcb\": \"d0b11037-1945-40ec-8ab3-47921d1fadcb\", \"7fd8f050-d87e-41cc-9c63-0003e5ee1544\": \"7fd8f050-d87e-41cc-9c63-0003e5ee1544\", \"a77ba583-0f1d-46b2-8ff7-ae17479ce0fd\": \"a77ba583-0f1d-46b2-8ff7-ae17479ce0fd\", \"300666de-ee99-4e70-879a-f6089faafc46\": \"300666de-ee99-4e70-879a-f6089faafc46\", \"fc29303b-07ce-4727-be27-983181f9f61e\": \"fc29303b-07ce-4727-be27-983181f9f61e\", \"f8cbb712-32b8-4562-bde4-fb725b3d9205\": \"f8cbb712-32b8-4562-bde4-fb725b3d9205\", \"5d9e999c-18a0-4cb2-9926-50c308eb129b\": \"5d9e999c-18a0-4cb2-9926-50c308eb129b\", \"a56e9c7d-5513-45d6-a642-be7af0c2e85c\": \"a56e9c7d-5513-45d6-a642-be7af0c2e85c\", \"6a803b57-49fc-48ca-9393-972328ee4732\": \"6a803b57-49fc-48ca-9393-972328ee4732\", \"02ca96c4-6d09-4dc8-92cc-b544eedf62f1\": \"02ca96c4-6d09-4dc8-92cc-b544eedf62f1\", \"ed46bb94-ddc0-496e-b660-7dc1414efb5a\": \"ed46bb94-ddc0-496e-b660-7dc1414efb5a\", \"2bad9597-31ad-4288-9dce-b385ed1aac1a\": \"2bad9597-31ad-4288-9dce-b385ed1aac1a\", \"8ded3bcf-f8a8-461b-a4b9-9a85d82797f3\": \"8ded3bcf-f8a8-461b-a4b9-9a85d82797f3\", \"3b9a25ca-ad51-446a-b03e-3ebd0d40242d\": \"3b9a25ca-ad51-446a-b03e-3ebd0d40242d\", \"58185f9d-bf2a-443c-bc76-f5bfe06ec79a\": \"58185f9d-bf2a-443c-bc76-f5bfe06ec79a\", \"e2622ce4-abb8-4d42-86d9-966ce0b9ca15\": \"e2622ce4-abb8-4d42-86d9-966ce0b9ca15\", \"9949ac58-0bff-4791-bb37-9b42df6977db\": \"9949ac58-0bff-4791-bb37-9b42df6977db\", \"5214c1b3-9682-48b2-a25e-f4d5879a1a65\": \"5214c1b3-9682-48b2-a25e-f4d5879a1a65\", \"9e2d2d43-625d-4106-8d00-c47da6bd20c3\": \"9e2d2d43-625d-4106-8d00-c47da6bd20c3\", \"d6b690e6-46f0-492f-8f4b-3a7a80d07138\": \"d6b690e6-46f0-492f-8f4b-3a7a80d07138\", \"df93033a-8dd3-49f7-b348-763d0b48e612\": \"df93033a-8dd3-49f7-b348-763d0b48e612\", \"5a860cda-b415-4d83-aa50-ae5b9e63b858\": \"5a860cda-b415-4d83-aa50-ae5b9e63b858\", \"01fe664f-3b2a-46d1-b8bb-7d45779f69f6\": \"01fe664f-3b2a-46d1-b8bb-7d45779f69f6\", \"bcdc7243-9dd5-445b-b2b7-358c669c8893\": \"bcdc7243-9dd5-445b-b2b7-358c669c8893\", \"966263e0-1f7b-4cc1-8815-c3f548f11def\": \"966263e0-1f7b-4cc1-8815-c3f548f11def\", \"df0da444-94fc-4ca2-99eb-20c90d355490\": \"df0da444-94fc-4ca2-99eb-20c90d355490\", \"adb544e2-adb7-4b83-a8aa-cefb1f2db533\": \"adb544e2-adb7-4b83-a8aa-cefb1f2db533\", \"100c5e3f-39bf-4e91-8a77-6be51ab4a2a1\": \"100c5e3f-39bf-4e91-8a77-6be51ab4a2a1\", \"5f79533d-d369-490f-9016-5149f141ebc5\": \"5f79533d-d369-490f-9016-5149f141ebc5\", \"05c844be-7464-4e7c-913c-5ffbce72216d\": \"05c844be-7464-4e7c-913c-5ffbce72216d\", \"e1e2da1d-700d-405d-8f91-cf85a3d0298c\": \"e1e2da1d-700d-405d-8f91-cf85a3d0298c\", \"77272b59-5423-4d64-9966-838372f1baf0\": \"77272b59-5423-4d64-9966-838372f1baf0\", \"2e3ae5c2-1359-477f-8d03-f94011102462\": \"2e3ae5c2-1359-477f-8d03-f94011102462\", \"e2638c82-3b0f-4b13-bb08-7dda091f3742\": \"e2638c82-3b0f-4b13-bb08-7dda091f3742\", \"490925cf-dc04-479d-9867-e2198bb474a1\": \"490925cf-dc04-479d-9867-e2198bb474a1\", \"b33fb72e-9070-4eae-a7b0-c567c9f6ea22\": \"b33fb72e-9070-4eae-a7b0-c567c9f6ea22\", \"49b8caf2-6a12-493b-ad4c-0f93bcd226dd\": \"49b8caf2-6a12-493b-ad4c-0f93bcd226dd\", \"95c6c4a4-fa11-42d8-9f26-8a79039a5c52\": \"95c6c4a4-fa11-42d8-9f26-8a79039a5c52\", \"7bd2d852-2912-49ec-a0a2-20b8af746cd7\": \"7bd2d852-2912-49ec-a0a2-20b8af746cd7\", \"ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197\": \"ce14dbf8-5e64-4a1c-ab0c-fd33f4c88197\", \"611a01a0-1846-4956-afa8-1721c7e159c6\": \"611a01a0-1846-4956-afa8-1721c7e159c6\", \"dc6ba06b-d8da-41cc-9bfe-2278eea4e56a\": \"dc6ba06b-d8da-41cc-9bfe-2278eea4e56a\", \"93c1fbbd-2699-4ae1-9962-68a0659657e4\": \"93c1fbbd-2699-4ae1-9962-68a0659657e4\", \"8f813959-7893-486a-8d03-714339c68ce4\": \"8f813959-7893-486a-8d03-714339c68ce4\", \"f05a433d-ed66-4ed2-833c-2883a8db685a\": \"f05a433d-ed66-4ed2-833c-2883a8db685a\", \"28408e6d-fbfd-45e2-bc90-cb420df61123\": \"28408e6d-fbfd-45e2-bc90-cb420df61123\", \"6a5bd365-07fd-49c3-bbee-d97f50e051da\": \"6a5bd365-07fd-49c3-bbee-d97f50e051da\", \"2ab9e166-9379-493f-928b-d89ae364ae9b\": \"2ab9e166-9379-493f-928b-d89ae364ae9b\", \"3a4ba3e0-e605-466a-9393-c37ae9f6f854\": \"3a4ba3e0-e605-466a-9393-c37ae9f6f854\", \"58bd1a0c-4caf-4aab-97b9-d69cdaf9170e\": \"58bd1a0c-4caf-4aab-97b9-d69cdaf9170e\", \"1af5f605-ca46-404d-8dc5-fc1b82de88e6\": \"1af5f605-ca46-404d-8dc5-fc1b82de88e6\", \"0d9629cf-7213-4062-b3e8-7dbdfc05c1e6\": \"0d9629cf-7213-4062-b3e8-7dbdfc05c1e6\", \"7d80ba2f-ba44-49e2-97c8-68cea22d2916\": \"7d80ba2f-ba44-49e2-97c8-68cea22d2916\", \"bd2cf428-3bc4-4670-a299-bf780c72bea3\": \"bd2cf428-3bc4-4670-a299-bf780c72bea3\", \"8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6\": \"8b20bc6c-3dfb-4ebc-94c8-25ae7b3267f6\", \"e3c390e3-85d3-4c69-9c96-066b77f5a79a\": \"e3c390e3-85d3-4c69-9c96-066b77f5a79a\", \"332a3a26-4225-4fc5-a916-757c9d09546c\": \"332a3a26-4225-4fc5-a916-757c9d09546c\", \"e42821bf-4fee-435b-a441-6e711f93afa8\": \"e42821bf-4fee-435b-a441-6e711f93afa8\", \"fba66f0c-582c-4727-a940-6fe6b399d0e8\": \"fba66f0c-582c-4727-a940-6fe6b399d0e8\", \"0cb107c3-ba56-4017-bc47-5a0b3b692df2\": \"0cb107c3-ba56-4017-bc47-5a0b3b692df2\", \"3b079652-a22e-4cea-aa9a-5405b1f81807\": \"3b079652-a22e-4cea-aa9a-5405b1f81807\", \"ffada7bd-ed77-47e1-b51b-b578bcbabf71\": \"ffada7bd-ed77-47e1-b51b-b578bcbabf71\", \"e2f56072-fc39-4e1a-bee3-73eede268aa6\": \"e2f56072-fc39-4e1a-bee3-73eede268aa6\", \"9d56e7de-e17b-4ada-a431-edb219071f49\": \"9d56e7de-e17b-4ada-a431-edb219071f49\", \"43a19927-4a33-4a89-83fd-ad58d585938e\": \"43a19927-4a33-4a89-83fd-ad58d585938e\", \"200e4c3e-0cfb-43a0-809f-1ce8197f0fec\": \"200e4c3e-0cfb-43a0-809f-1ce8197f0fec\", \"4e9eb35d-1e39-4c53-839f-52bec0f97536\": \"4e9eb35d-1e39-4c53-839f-52bec0f97536\", \"979b9255-62a1-439e-98c6-433a4c37af0e\": \"979b9255-62a1-439e-98c6-433a4c37af0e\", \"b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d\": \"b7b4ff76-7b67-4fb9-8dca-dbd2ecf26c4d\", \"e209f9bf-dda9-43e3-8c64-38517c43c14f\": \"e209f9bf-dda9-43e3-8c64-38517c43c14f\", \"68602cb0-6f9d-4eec-b4dc-af904ddf9455\": \"68602cb0-6f9d-4eec-b4dc-af904ddf9455\", \"9203e64d-436e-40d3-864d-bc7a6970b421\": \"9203e64d-436e-40d3-864d-bc7a6970b421\", \"a39ac088-9722-442e-9d9b-c0e55fc17801\": \"a39ac088-9722-442e-9d9b-c0e55fc17801\", \"eca70f18-6c77-4e89-a476-fd5a9e713826\": \"eca70f18-6c77-4e89-a476-fd5a9e713826\", \"36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499\": \"36ebb5b6-c2e0-4dfe-a3dd-d3dfa9c22499\", \"ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e\": \"ce1cb2b5-b7f8-4dd1-a7d8-e5085cedcf6e\", \"77051c31-f841-4e14-894e-1f862021b3dd\": \"77051c31-f841-4e14-894e-1f862021b3dd\", \"595b345e-ee63-409c-9292-68359467be4f\": \"595b345e-ee63-409c-9292-68359467be4f\", \"57f9f691-887d-4f71-a458-7373c780e219\": \"57f9f691-887d-4f71-a458-7373c780e219\", \"e5a1e03f-b0a0-4d55-9200-b54d3c152d3e\": \"e5a1e03f-b0a0-4d55-9200-b54d3c152d3e\", \"3acecbd4-1867-4451-b65a-5dbf975bb532\": \"3acecbd4-1867-4451-b65a-5dbf975bb532\", \"0957ead3-48dd-4dba-8d5d-231ad4bf4079\": \"0957ead3-48dd-4dba-8d5d-231ad4bf4079\", \"e8285ac4-67c6-465e-bb2e-bb4d232ee8b9\": \"e8285ac4-67c6-465e-bb2e-bb4d232ee8b9\", \"f6df0908-4d14-4b3f-89c7-0d0db1a18073\": \"f6df0908-4d14-4b3f-89c7-0d0db1a18073\", \"403213cd-056c-4dd4-9f30-6c196e4b843a\": \"403213cd-056c-4dd4-9f30-6c196e4b843a\", \"763de8e3-b292-4b0f-a23d-352999b8dac3\": \"763de8e3-b292-4b0f-a23d-352999b8dac3\", \"0029fe70-8458-48fe-9867-052638f3e121\": \"0029fe70-8458-48fe-9867-052638f3e121\", \"49061286-377d-4bd2-868f-9af96241cc3f\": \"49061286-377d-4bd2-868f-9af96241cc3f\", \"4e9bcbd6-b2f0-4e98-b621-37cd6e2bab33\": \"4e9bcbd6-b2f0-4e98-b621-37cd6e2bab33\", \"bfd83eea-695c-4156-b9e0-ed51488f50cd\": \"bfd83eea-695c-4156-b9e0-ed51488f50cd\", \"c52e477a-e629-4d8d-ae02-3acec463f0e5\": \"c52e477a-e629-4d8d-ae02-3acec463f0e5\", \"528d270b-d6b7-458c-aa0c-17cfb1b7493b\": \"528d270b-d6b7-458c-aa0c-17cfb1b7493b\", \"38c05c5c-78a9-41fd-b8c8-cc911b44b392\": \"38c05c5c-78a9-41fd-b8c8-cc911b44b392\", \"3766a672-229d-481b-8e77-f63d9edfe42d\": \"3766a672-229d-481b-8e77-f63d9edfe42d\", \"88caea78-3b8c-4c50-8e40-be33f06d0a84\": \"88caea78-3b8c-4c50-8e40-be33f06d0a84\", \"79661545-c9b8-410c-a23c-7b75c28e1847\": \"79661545-c9b8-410c-a23c-7b75c28e1847\", \"4118448b-bb8b-4fd6-9f1b-e10f8247536f\": \"4118448b-bb8b-4fd6-9f1b-e10f8247536f\", \"f157ec57-6d4d-4539-a463-eaef48d39eaa\": \"f157ec57-6d4d-4539-a463-eaef48d39eaa\", \"024fedaa-e2e4-4733-80db-1770ee4be916\": \"024fedaa-e2e4-4733-80db-1770ee4be916\", \"852347b8-c229-42b8-9261-bc9c6037ad24\": \"852347b8-c229-42b8-9261-bc9c6037ad24\", \"7a64fd7d-9b41-4740-a3de-2b277f852653\": \"7a64fd7d-9b41-4740-a3de-2b277f852653\", \"a390b91f-efb8-4f77-9649-77a25276cf6b\": \"a390b91f-efb8-4f77-9649-77a25276cf6b\", \"48499d08-c18e-4ae7-a08e-14c6a8ce5534\": \"48499d08-c18e-4ae7-a08e-14c6a8ce5534\", \"120557fb-efb3-4afd-a575-fb950b4dde3e\": \"120557fb-efb3-4afd-a575-fb950b4dde3e\", \"5d85bafc-9d1d-41e2-895a-d18e73e172ae\": \"5d85bafc-9d1d-41e2-895a-d18e73e172ae\", \"2e61ba59-a7aa-4b65-926a-687ae86861e3\": \"2e61ba59-a7aa-4b65-926a-687ae86861e3\", \"ca8ed9ab-36c3-4cc9-9200-a44281095748\": \"ca8ed9ab-36c3-4cc9-9200-a44281095748\", \"83f784f8-1769-4a12-a9fc-e66d75ebd146\": \"83f784f8-1769-4a12-a9fc-e66d75ebd146\", \"d358ea6f-d726-4852-b959-6b6f02b7f626\": \"d358ea6f-d726-4852-b959-6b6f02b7f626\", \"77027437-a678-41be-b475-fb1d8b50057e\": \"77027437-a678-41be-b475-fb1d8b50057e\", \"fa1fcd89-0316-4277-a96a-908337af1bcb\": \"fa1fcd89-0316-4277-a96a-908337af1bcb\", \"54e47b1b-5be0-423e-8358-83c8c815d142\": \"54e47b1b-5be0-423e-8358-83c8c815d142\", \"795741ac-cedf-4428-8f5e-165bd45b1a62\": \"795741ac-cedf-4428-8f5e-165bd45b1a62\", \"83547562-e8ba-4313-93f1-fc33fd2e0cd7\": \"83547562-e8ba-4313-93f1-fc33fd2e0cd7\", \"a8fddcc6-b502-48a5-957e-099fdc6d5fdc\": \"a8fddcc6-b502-48a5-957e-099fdc6d5fdc\", \"d158c94d-fd03-4607-b7b2-b817dc6750ac\": \"d158c94d-fd03-4607-b7b2-b817dc6750ac\", \"89375532-71c7-4ba7-a392-f09aaf08f2be\": \"89375532-71c7-4ba7-a392-f09aaf08f2be\", \"9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367\": \"9b5e83f4-4d7e-48f3-b44c-e6d3b4a33367\", \"835d2923-71e0-4163-893a-caabe716e546\": \"835d2923-71e0-4163-893a-caabe716e546\", \"ca32725c-6115-49db-913c-df3b07fa6beb\": \"ca32725c-6115-49db-913c-df3b07fa6beb\", \"578241bd-9f23-4439-a655-d30648805018\": \"578241bd-9f23-4439-a655-d30648805018\", \"e14f6cb9-9e6c-4472-abf0-450c9619ec9f\": \"e14f6cb9-9e6c-4472-abf0-450c9619ec9f\", \"914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10\": \"914aa8b2-ee23-4ca1-9e6e-5654c2fb7b10\", \"2bd791d3-6858-47f9-865f-388dac32fac6\": \"2bd791d3-6858-47f9-865f-388dac32fac6\", \"c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef\": \"c8e5d8f0-61e2-4054-9cc6-1d6bb01946ef\", \"101abeec-50d2-415c-bd60-6b01f5634c97\": \"101abeec-50d2-415c-bd60-6b01f5634c97\", \"a8b43d44-7ec4-40ac-a16a-3befd53e8c65\": \"a8b43d44-7ec4-40ac-a16a-3befd53e8c65\", \"8273a425-c99f-49b4-9db3-121013f2933d\": \"8273a425-c99f-49b4-9db3-121013f2933d\", \"b88f77c1-2044-4a9f-b790-573fc3c5c12b\": \"b88f77c1-2044-4a9f-b790-573fc3c5c12b\", \"87039a66-6d37-483a-bff7-4432cc531908\": \"87039a66-6d37-483a-bff7-4432cc531908\", \"d2e036ec-ad7f-4f9c-919f-08e95b238f42\": \"d2e036ec-ad7f-4f9c-919f-08e95b238f42\", \"476681b8-7b69-4a34-a6d2-809fc653b8bf\": \"476681b8-7b69-4a34-a6d2-809fc653b8bf\", \"b6bac391-46af-49b8-ac76-55b9ea0a3f10\": \"b6bac391-46af-49b8-ac76-55b9ea0a3f10\", \"4e342ed1-90d4-4470-95d3-1ca6c00677d9\": \"4e342ed1-90d4-4470-95d3-1ca6c00677d9\", \"71c4a3bc-6635-44e1-80a1-0e8deef0d767\": \"71c4a3bc-6635-44e1-80a1-0e8deef0d767\", \"2db9c2b8-f85c-463d-9f24-ebd8e9727fd5\": \"2db9c2b8-f85c-463d-9f24-ebd8e9727fd5\", \"9c6d0c05-1650-4b0e-9a43-a2e793804053\": \"9c6d0c05-1650-4b0e-9a43-a2e793804053\", \"74d6bdca-a349-435b-9efe-0beaeed635a1\": \"74d6bdca-a349-435b-9efe-0beaeed635a1\", \"a3298b90-49cf-4b41-a0d9-17cc2a67baca\": \"a3298b90-49cf-4b41-a0d9-17cc2a67baca\", \"1e4b3a13-4e82-4e88-8799-8d02597cd960\": \"1e4b3a13-4e82-4e88-8799-8d02597cd960\", \"d72266a3-fc2b-4dc5-9db2-4f7278b30167\": \"d72266a3-fc2b-4dc5-9db2-4f7278b30167\", \"797816ac-6fc2-4453-b294-c5da10cbf4ab\": \"797816ac-6fc2-4453-b294-c5da10cbf4ab\", \"bca215d8-8f5d-4550-bee2-ca746b34b1c7\": \"bca215d8-8f5d-4550-bee2-ca746b34b1c7\", \"2af8640e-5a53-47c2-a938-9f9695cd7c76\": \"2af8640e-5a53-47c2-a938-9f9695cd7c76\", \"f8bf4db5-78de-4d72-a5e3-33c83fc8c734\": \"f8bf4db5-78de-4d72-a5e3-33c83fc8c734\", \"44888967-ba3f-442c-9d7b-802d7ca43e44\": \"44888967-ba3f-442c-9d7b-802d7ca43e44\", \"dc28745b-ce90-456e-83b0-3718ac471b7f\": \"dc28745b-ce90-456e-83b0-3718ac471b7f\", \"14eda487-be69-46a6-8dd9-740d35cc7fe3\": \"14eda487-be69-46a6-8dd9-740d35cc7fe3\", \"6e741f83-1a55-4964-a39a-1735a998cd6d\": \"6e741f83-1a55-4964-a39a-1735a998cd6d\", \"40a841c0-27b9-4105-8dc6-3454da3e3bd8\": \"40a841c0-27b9-4105-8dc6-3454da3e3bd8\", \"0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a\": \"0e35a31b-6d8a-4f9b-8c29-5781a42f4a6a\", \"4ffb13a4-79e2-4307-ae24-d806775763c3\": \"4ffb13a4-79e2-4307-ae24-d806775763c3\", \"6be1f85e-83be-4483-8b86-92c8725356a9\": \"6be1f85e-83be-4483-8b86-92c8725356a9\", \"c271474a-b01e-4dde-806e-7f88aea2f469\": \"c271474a-b01e-4dde-806e-7f88aea2f469\", \"7c252836-73d8-4243-8506-264c8086427a\": \"7c252836-73d8-4243-8506-264c8086427a\", \"72335e90-0cfc-416a-bc36-58b99175d085\": \"72335e90-0cfc-416a-bc36-58b99175d085\", \"09bc1af2-b295-43b7-91c8-008573646a0d\": \"09bc1af2-b295-43b7-91c8-008573646a0d\", \"468e2ecf-5ca8-4831-a045-858601970464\": \"468e2ecf-5ca8-4831-a045-858601970464\", \"c6e72421-0c17-4c05-85ce-2010d1df2cea\": \"c6e72421-0c17-4c05-85ce-2010d1df2cea\", \"603ea3c1-06dc-4f3b-944a-9c6cc9673b9d\": \"603ea3c1-06dc-4f3b-944a-9c6cc9673b9d\", \"a0fc13ea-7924-4e50-95e1-f43f0559d329\": \"a0fc13ea-7924-4e50-95e1-f43f0559d329\", \"b1f955b6-bde3-4187-b7ec-0ccca333c31b\": \"b1f955b6-bde3-4187-b7ec-0ccca333c31b\", \"5b57b692-0186-4785-9cda-71e403686f43\": \"5b57b692-0186-4785-9cda-71e403686f43\", \"8086fd1e-b2ec-4070-975c-c2361133f6a4\": \"8086fd1e-b2ec-4070-975c-c2361133f6a4\", \"ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111\": \"ffb9a74a-b5ef-46fe-a18b-ccc6ba7da111\", \"bc11dbf0-462f-4bef-b531-78c07e33d133\": \"bc11dbf0-462f-4bef-b531-78c07e33d133\", \"0c284300-d9f9-441d-b582-6e6795221c4e\": \"0c284300-d9f9-441d-b582-6e6795221c4e\", \"1e759376-2456-49fa-a154-1a5e19aad3e9\": \"1e759376-2456-49fa-a154-1a5e19aad3e9\", \"cf77eaa3-eda1-41a1-84ee-75ca0759b985\": \"cf77eaa3-eda1-41a1-84ee-75ca0759b985\", \"5622feb7-e8d7-436c-b3da-101d0b4f4f06\": \"5622feb7-e8d7-436c-b3da-101d0b4f4f06\", \"ff3e9c00-eb71-4900-9413-b6deada6e561\": \"ff3e9c00-eb71-4900-9413-b6deada6e561\", \"32da5209-b7d2-4eb3-8d14-ef013b8d4938\": \"32da5209-b7d2-4eb3-8d14-ef013b8d4938\", \"f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1\": \"f5793231-5cbd-4197-a8f7-0eeb8fb4c6c1\", \"8847a2eb-c347-4971-94f1-45a7f1688aac\": \"8847a2eb-c347-4971-94f1-45a7f1688aac\", \"9c608428-da65-4cb9-bb75-fbc5c66ccd01\": \"9c608428-da65-4cb9-bb75-fbc5c66ccd01\", \"e3f05e59-fcfb-46c1-8e98-1e1783599004\": \"e3f05e59-fcfb-46c1-8e98-1e1783599004\", \"f24a6dc4-2427-4dd3-9bb8-61fe621a59cb\": \"f24a6dc4-2427-4dd3-9bb8-61fe621a59cb\", \"df0cb8c7-a553-454b-ba68-82ec87b30299\": \"df0cb8c7-a553-454b-ba68-82ec87b30299\", \"413faf23-1ff4-4f8e-a48b-d9509c3d23ae\": \"413faf23-1ff4-4f8e-a48b-d9509c3d23ae\", \"9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2\": \"9e5d2a5d-d5f2-4612-a45c-8e15a890ceb2\", \"b9707183-c73e-4aee-8864-fee85b148ec9\": \"b9707183-c73e-4aee-8864-fee85b148ec9\", \"90e148e7-14d9-4881-861d-0786b910c721\": \"90e148e7-14d9-4881-861d-0786b910c721\", \"c85b5a7b-c07c-456c-b67e-041c52a49a9c\": \"c85b5a7b-c07c-456c-b67e-041c52a49a9c\", \"8fa24c22-6fbd-4ab5-a8df-d0043157c950\": \"8fa24c22-6fbd-4ab5-a8df-d0043157c950\", \"d7f0868b-795a-4340-8ac3-625b21cf4b6f\": \"d7f0868b-795a-4340-8ac3-625b21cf4b6f\", \"7c5c4726-bc4f-48d9-9331-ad444749d3ae\": \"7c5c4726-bc4f-48d9-9331-ad444749d3ae\", \"aec64413-f360-4c95-891e-294655fa24f5\": \"aec64413-f360-4c95-891e-294655fa24f5\", \"47be1383-b4c3-4b46-b1bb-612f115cb5cd\": \"47be1383-b4c3-4b46-b1bb-612f115cb5cd\", \"46cb1d52-0f0b-4b17-8e1f-3432aae4826c\": \"46cb1d52-0f0b-4b17-8e1f-3432aae4826c\", \"778b8bd0-445d-4c66-8804-9c1e37888ea4\": \"778b8bd0-445d-4c66-8804-9c1e37888ea4\", \"8acd8464-081a-4d21-a2d8-811bc8a41922\": \"8acd8464-081a-4d21-a2d8-811bc8a41922\", \"c895e787-7815-4877-a7df-afab66f0636a\": \"c895e787-7815-4877-a7df-afab66f0636a\", \"296c8197-079b-4c2d-b812-f74780c73c32\": \"296c8197-079b-4c2d-b812-f74780c73c32\", \"a80953f0-5fd7-434d-8fc0-cfd43266c141\": \"a80953f0-5fd7-434d-8fc0-cfd43266c141\", \"2a7e0776-0b2c-48ed-a2cc-258375452620\": \"2a7e0776-0b2c-48ed-a2cc-258375452620\", \"faa27de2-ed4c-48b4-8317-fc0e869a4a36\": \"faa27de2-ed4c-48b4-8317-fc0e869a4a36\", \"463072b0-0ada-437e-bb65-bf0976ef72b3\": \"463072b0-0ada-437e-bb65-bf0976ef72b3\", \"4e248107-2035-4199-bc08-c74b49d5fcc6\": \"4e248107-2035-4199-bc08-c74b49d5fcc6\", \"cfdfad83-3486-47fc-9d06-18e966e50b7c\": \"cfdfad83-3486-47fc-9d06-18e966e50b7c\", \"50e9c42c-bb86-4291-a2a7-bd60a71a466e\": \"50e9c42c-bb86-4291-a2a7-bd60a71a466e\", \"5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd\": \"5fb9c9ec-1b0e-4967-aceb-2b86d57f22fd\", \"ff25c099-aa59-464c-a08c-fdb3791ab5dd\": \"ff25c099-aa59-464c-a08c-fdb3791ab5dd\", \"ea4724d4-0293-4e1e-a176-0bea52a3e5f3\": \"ea4724d4-0293-4e1e-a176-0bea52a3e5f3\", \"f9cc2420-88fe-404c-b7dc-a64dc68fa7ec\": \"f9cc2420-88fe-404c-b7dc-a64dc68fa7ec\", \"860c4228-3dfe-4204-8555-d3f93f30e982\": \"860c4228-3dfe-4204-8555-d3f93f30e982\", \"6a65d6cc-b8ef-4b49-a1b9-06501f385281\": \"6a65d6cc-b8ef-4b49-a1b9-06501f385281\", \"deb4207f-47b8-4363-ac6c-c00cf633e9a3\": \"deb4207f-47b8-4363-ac6c-c00cf633e9a3\", \"70207f0b-28b6-4000-9af1-a9751ec388a1\": \"70207f0b-28b6-4000-9af1-a9751ec388a1\", \"35b30ee3-83d7-4c50-a533-590b75092687\": \"35b30ee3-83d7-4c50-a533-590b75092687\", \"b74e5b1c-365c-4a04-b58e-ca8df2f2a812\": \"b74e5b1c-365c-4a04-b58e-ca8df2f2a812\", \"dac79022-37f6-466c-99fe-255aa9a4aff6\": \"dac79022-37f6-466c-99fe-255aa9a4aff6\", \"a684faf2-d6e7-4094-a1f5-3073e3010969\": \"a684faf2-d6e7-4094-a1f5-3073e3010969\", \"b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5\": \"b71e453e-c24c-4ddf-9f76-8f1d2c3f59e5\", \"09d878c5-7b5f-43df-b2fc-17349c286eb7\": \"09d878c5-7b5f-43df-b2fc-17349c286eb7\", \"e369201a-c028-456e-b33f-5a823cd04c4b\": \"e369201a-c028-456e-b33f-5a823cd04c4b\", \"0862dba7-c437-419d-a67c-a7a19278ee37\": \"0862dba7-c437-419d-a67c-a7a19278ee37\", \"8a6a3656-e862-4e1e-9566-98904db6b57b\": \"8a6a3656-e862-4e1e-9566-98904db6b57b\", \"a0f8d230-720d-442f-ae36-25a8a54cfa97\": \"a0f8d230-720d-442f-ae36-25a8a54cfa97\", \"058fd3d4-efa5-4488-a1c3-74bf09781e86\": \"058fd3d4-efa5-4488-a1c3-74bf09781e86\", \"9f902caa-3c8a-4c05-b46c-1e1f1df83834\": \"9f902caa-3c8a-4c05-b46c-1e1f1df83834\", \"15997e69-4974-4fe1-9800-c562eec9b258\": \"15997e69-4974-4fe1-9800-c562eec9b258\", \"76601a4c-5955-4f68-8fe0-2347f76e0d83\": \"76601a4c-5955-4f68-8fe0-2347f76e0d83\", \"78a03d23-9f82-4414-be59-a73782dee41c\": \"78a03d23-9f82-4414-be59-a73782dee41c\", \"97d1c507-fc21-47f4-9eb4-f7321a4c0a77\": \"97d1c507-fc21-47f4-9eb4-f7321a4c0a77\", \"b4423dab-675c-4491-9cea-c5384fd18e2b\": \"b4423dab-675c-4491-9cea-c5384fd18e2b\", \"5c8c1f58-f167-4b77-aa0e-61d47a8039d7\": \"5c8c1f58-f167-4b77-aa0e-61d47a8039d7\", \"7e34500c-dbfa-4e84-8d64-3d1163dd5c48\": \"7e34500c-dbfa-4e84-8d64-3d1163dd5c48\", \"a8f88646-e5af-4381-8a33-f2d66d538ffd\": \"a8f88646-e5af-4381-8a33-f2d66d538ffd\", \"2604e495-b5e9-41b6-bcac-c29ffed09f4c\": \"2604e495-b5e9-41b6-bcac-c29ffed09f4c\", \"8ab04d40-d2ca-4185-9bab-b4c745a49c48\": \"8ab04d40-d2ca-4185-9bab-b4c745a49c48\", \"5285e0af-31bb-4297-9b85-74f17d7939e9\": \"5285e0af-31bb-4297-9b85-74f17d7939e9\", \"8fbe5691-8155-4aee-a535-dfeb2a06cf9b\": \"8fbe5691-8155-4aee-a535-dfeb2a06cf9b\", \"032cec94-aeb3-436e-a40f-60f21acda04f\": \"032cec94-aeb3-436e-a40f-60f21acda04f\", \"6b7d8b5b-95aa-4bb5-bc55-174503dd4e62\": \"6b7d8b5b-95aa-4bb5-bc55-174503dd4e62\", \"274dcbca-d18d-4650-a190-c0911bb99942\": \"274dcbca-d18d-4650-a190-c0911bb99942\", \"4dea95ae-199c-4134-af0a-d58ebfff00f9\": \"4dea95ae-199c-4134-af0a-d58ebfff00f9\", \"ebec4eac-8275-4125-8b61-3c7cbd201d55\": \"ebec4eac-8275-4125-8b61-3c7cbd201d55\", \"50b32ea2-6fc6-481c-865a-980bec925996\": \"50b32ea2-6fc6-481c-865a-980bec925996\", \"f2cbf011-bc22-410f-b36e-05f7c6edc459\": \"f2cbf011-bc22-410f-b36e-05f7c6edc459\", \"346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785\": \"346aa99f-bb2b-4cf7-a7ae-2aaea8ebb785\", \"1c75b713-6f92-4ec8-9218-3bb3e58c4e03\": \"1c75b713-6f92-4ec8-9218-3bb3e58c4e03\", \"ccc440cc-471f-40a5-a4b4-2fe156a969fc\": \"ccc440cc-471f-40a5-a4b4-2fe156a969fc\", \"33b8bf66-a163-4af4-8f34-974afdb37833\": \"33b8bf66-a163-4af4-8f34-974afdb37833\", \"364f57dc-fe18-47a9-816d-ea654a4b2b7c\": \"364f57dc-fe18-47a9-816d-ea654a4b2b7c\", \"cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7\": \"cdc234c5-6d40-4b9a-8a6b-aed34b6c6ed7\", \"d42c8120-3255-4b13-83d4-eb2cad0d73c0\": \"d42c8120-3255-4b13-83d4-eb2cad0d73c0\", \"0a61de61-47dd-42cd-94be-4467bdc87028\": \"0a61de61-47dd-42cd-94be-4467bdc87028\", \"a11f6bc2-d45c-4302-9f93-15f941acefa1\": \"a11f6bc2-d45c-4302-9f93-15f941acefa1\", \"b20c38b6-59e4-43a9-9b10-8ef6127ecb04\": \"b20c38b6-59e4-43a9-9b10-8ef6127ecb04\", \"ed17db20-b032-4c05-a08d-760554d40e33\": \"ed17db20-b032-4c05-a08d-760554d40e33\", \"6e13df71-09d7-4d1e-9790-ff7ffdf84823\": \"6e13df71-09d7-4d1e-9790-ff7ffdf84823\", \"d51236fd-2a0c-4de1-b447-a5aca9c8206b\": \"d51236fd-2a0c-4de1-b447-a5aca9c8206b\", \"464b1f97-e2e7-4c08-831e-26f486e2c433\": \"464b1f97-e2e7-4c08-831e-26f486e2c433\", \"58ab7dd7-68b1-4ed3-b40f-38b076c70908\": \"58ab7dd7-68b1-4ed3-b40f-38b076c70908\", \"ae0078e0-7d33-47a4-b481-d98e71589dce\": \"ae0078e0-7d33-47a4-b481-d98e71589dce\", \"3f6a626d-e8cb-4481-a77f-848c263aa0a7\": \"3f6a626d-e8cb-4481-a77f-848c263aa0a7\", \"412c18f5-2adf-4945-acb2-777ae502bdc3\": \"412c18f5-2adf-4945-acb2-777ae502bdc3\", \"ef4cefad-0d6b-47c8-9cb9-039fb64b5457\": \"ef4cefad-0d6b-47c8-9cb9-039fb64b5457\", \"5ccf1886-586d-469b-9c5d-0edcc27c58c9\": \"5ccf1886-586d-469b-9c5d-0edcc27c58c9\", \"fb5057d6-151f-45f4-94e3-0b72ee4db0b1\": \"fb5057d6-151f-45f4-94e3-0b72ee4db0b1\", \"6876f76e-e347-4f20-ac56-af1923c786a1\": \"6876f76e-e347-4f20-ac56-af1923c786a1\", \"d1479bee-44ae-4a44-93f5-f3792b1cd94a\": \"d1479bee-44ae-4a44-93f5-f3792b1cd94a\", \"405fb950-67ab-482b-9e74-48979480e5c4\": \"405fb950-67ab-482b-9e74-48979480e5c4\", \"8d404377-1b77-4704-b523-3dcbd4c8b233\": \"8d404377-1b77-4704-b523-3dcbd4c8b233\", \"4d66d061-fd5a-497c-ba1e-a14318f7f516\": \"4d66d061-fd5a-497c-ba1e-a14318f7f516\", \"0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e\": \"0120a2e9-c4f5-4f6a-8d8c-56e844c24f0e\", \"71b50d05-a9dd-4398-b6af-ea4c37803aef\": \"71b50d05-a9dd-4398-b6af-ea4c37803aef\", \"60b16a6e-e240-4685-8033-5110a9e2662e\": \"60b16a6e-e240-4685-8033-5110a9e2662e\", \"5293cdfc-2093-4688-848c-c294e9d766ea\": \"5293cdfc-2093-4688-848c-c294e9d766ea\", \"c71e7e12-cedf-4542-b14b-231a8ddcb334\": \"c71e7e12-cedf-4542-b14b-231a8ddcb334\", \"c575058c-205e-4995-955e-14e1968bfa57\": \"c575058c-205e-4995-955e-14e1968bfa57\", \"d72190e5-f2aa-44a6-b790-d25e61ac052d\": \"d72190e5-f2aa-44a6-b790-d25e61ac052d\", \"b4288da3-3532-4958-8cbb-5f314e568859\": \"b4288da3-3532-4958-8cbb-5f314e568859\", \"d1691c76-81d3-42d2-8b4b-13216c91266d\": \"d1691c76-81d3-42d2-8b4b-13216c91266d\", \"81ec9bf4-9a1f-4c66-ab51-9c83014d037b\": \"81ec9bf4-9a1f-4c66-ab51-9c83014d037b\", \"480985cf-845c-4498-9784-3795b988ffbe\": \"480985cf-845c-4498-9784-3795b988ffbe\", \"8c831ae1-636c-4638-a199-e71f19d1a116\": \"8c831ae1-636c-4638-a199-e71f19d1a116\", \"b3304b34-b04b-4c3d-bef5-a595f990cd6a\": \"b3304b34-b04b-4c3d-bef5-a595f990cd6a\", \"35050b70-c5a7-48cf-b9e2-650bd0ae7363\": \"35050b70-c5a7-48cf-b9e2-650bd0ae7363\", \"c4ed859d-65f6-4952-9136-e2168eaa364b\": \"c4ed859d-65f6-4952-9136-e2168eaa364b\", \"3ee50f81-fa6a-4edb-847c-6ca85593d6a1\": \"3ee50f81-fa6a-4edb-847c-6ca85593d6a1\", \"280c0e76-41c0-4264-8a9c-9da2abc3c6ec\": \"280c0e76-41c0-4264-8a9c-9da2abc3c6ec\", \"ca6cb905-f47c-401a-bf43-e3a31a4f55da\": \"ca6cb905-f47c-401a-bf43-e3a31a4f55da\", \"90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef\": \"90d1ef37-a2f9-4e2d-ae8d-9e949b3099ef\", \"d64e91df-5c26-4967-b652-9ae074915b33\": \"d64e91df-5c26-4967-b652-9ae074915b33\", \"6b49d114-f4f4-485d-b910-70d6d6180da0\": \"6b49d114-f4f4-485d-b910-70d6d6180da0\", \"44a95309-3132-4d05-80d1-c46a5678b3dc\": \"44a95309-3132-4d05-80d1-c46a5678b3dc\", \"1fef1573-f066-4242-a6eb-2564da31ff53\": \"1fef1573-f066-4242-a6eb-2564da31ff53\", \"ad7f3325-40a7-4edc-849c-1cf0a687bd08\": \"ad7f3325-40a7-4edc-849c-1cf0a687bd08\", \"87a116ae-c397-4230-8e39-fae765e6d4dd\": \"87a116ae-c397-4230-8e39-fae765e6d4dd\", \"d343ff63-7653-4429-a4f9-d48a41df1b27\": \"d343ff63-7653-4429-a4f9-d48a41df1b27\", \"8390024f-9a10-4c45-8477-8f43e6cc772d\": \"8390024f-9a10-4c45-8477-8f43e6cc772d\", \"a172593c-f4f9-4d7b-b0ab-e683c8f21c70\": \"a172593c-f4f9-4d7b-b0ab-e683c8f21c70\", \"2a580198-957b-4937-9cbc-9c634ba3c008\": \"2a580198-957b-4937-9cbc-9c634ba3c008\", \"e138bd74-d5de-4d81-9ef5-5c4c15f03829\": \"e138bd74-d5de-4d81-9ef5-5c4c15f03829\", \"7d06288f-71e6-4cb6-a44f-6c4a982fc775\": \"7d06288f-71e6-4cb6-a44f-6c4a982fc775\", \"87cdb9f9-6443-4de6-805e-60fa79892b8c\": \"87cdb9f9-6443-4de6-805e-60fa79892b8c\", \"5b089c73-d94f-4170-9d23-00175b148dff\": \"5b089c73-d94f-4170-9d23-00175b148dff\", \"2bedf45a-a532-4f34-af89-5e54ebbb3360\": \"2bedf45a-a532-4f34-af89-5e54ebbb3360\", \"c4a882e3-5baf-45de-a850-58acb66aaf09\": \"c4a882e3-5baf-45de-a850-58acb66aaf09\", \"efa844fa-c6b3-49df-bf77-56953f9df462\": \"efa844fa-c6b3-49df-bf77-56953f9df462\", \"79183a94-0bfd-4e26-b2ac-01b4844777d6\": \"79183a94-0bfd-4e26-b2ac-01b4844777d6\", \"b90b3dfd-a42f-4419-b97f-f89f1c08ab54\": \"b90b3dfd-a42f-4419-b97f-f89f1c08ab54\", \"4e3e7b84-0d91-4cf7-b805-b232c8b649ba\": \"4e3e7b84-0d91-4cf7-b805-b232c8b649ba\", \"81d50026-2523-41c6-9b77-902190f43f7b\": \"81d50026-2523-41c6-9b77-902190f43f7b\", \"05dec978-9706-4716-ac11-f33bae44ea0b\": \"05dec978-9706-4716-ac11-f33bae44ea0b\", \"713a8421-fb21-41ba-ab14-183e576edcf8\": \"713a8421-fb21-41ba-ab14-183e576edcf8\", \"fe545f00-c6d3-4531-9c21-45cdddb63c6b\": \"fe545f00-c6d3-4531-9c21-45cdddb63c6b\", \"fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a\": \"fb3649b3-a0a1-4bf8-a6fb-31d6cb3e4f3a\", \"9dead0bc-0207-435a-ae20-ce09bcfe8f58\": \"9dead0bc-0207-435a-ae20-ce09bcfe8f58\", \"c7c5137c-0629-4b93-86d0-e670c9f67a27\": \"c7c5137c-0629-4b93-86d0-e670c9f67a27\", \"8757f6b1-ae55-499f-b25f-de05ab6dda08\": \"8757f6b1-ae55-499f-b25f-de05ab6dda08\", \"f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7\": \"f40f7e2e-0b7f-4b3e-a2b9-23ed6bc639b7\", \"d1a21348-e334-4cfd-bec4-dd62abb6f17e\": \"d1a21348-e334-4cfd-bec4-dd62abb6f17e\", \"e04b7813-1ac3-41bd-9d76-1989880984cd\": \"e04b7813-1ac3-41bd-9d76-1989880984cd\", \"4d438801-b2bf-411f-977d-f82dd9f153ee\": \"4d438801-b2bf-411f-977d-f82dd9f153ee\", \"d906a6e3-7a82-4967-b953-b0fdc66a6e47\": \"d906a6e3-7a82-4967-b953-b0fdc66a6e47\", \"9b99d183-9a8b-43db-b957-6e4913e35169\": \"9b99d183-9a8b-43db-b957-6e4913e35169\", \"329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4\": \"329fa215-36f6-4ca9-9ab5-f4cbbc2dd9b4\", \"bc7ed399-c799-4a22-a1b6-e1f003dd5610\": \"bc7ed399-c799-4a22-a1b6-e1f003dd5610\", \"67b55cd7-f8e1-469b-ad4b-03fa99f217a6\": \"67b55cd7-f8e1-469b-ad4b-03fa99f217a6\", \"418bdbeb-1337-428f-9947-64b09fbb11d2\": \"418bdbeb-1337-428f-9947-64b09fbb11d2\", \"f3fd52ab-6701-4e46-bc50-334d434e5506\": \"f3fd52ab-6701-4e46-bc50-334d434e5506\", \"9b6eccff-e7af-41e1-9e66-b386cde7c1c0\": \"9b6eccff-e7af-41e1-9e66-b386cde7c1c0\", \"19e66bab-9c92-4328-9ef0-c968ba87545d\": \"19e66bab-9c92-4328-9ef0-c968ba87545d\", \"ab51dd03-4549-42e0-8ce6-c7bec4f90dea\": \"ab51dd03-4549-42e0-8ce6-c7bec4f90dea\", \"a3543077-dc63-462e-bdde-45a63f52b730\": \"a3543077-dc63-462e-bdde-45a63f52b730\", \"e53f0119-da24-4204-88c5-936fab297322\": \"e53f0119-da24-4204-88c5-936fab297322\", \"4f2cb7ba-803b-414c-8fad-e09bf904bef8\": \"4f2cb7ba-803b-414c-8fad-e09bf904bef8\", \"bd03b071-a4f2-47be-8f28-d03f6308a455\": \"bd03b071-a4f2-47be-8f28-d03f6308a455\", \"65cd9328-4671-4d36-8c75-e84b8a97fced\": \"65cd9328-4671-4d36-8c75-e84b8a97fced\", \"cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae\": \"cfb22927-a751-4cd7-bdd6-cfd0ba9ab7ae\", \"0200d07e-ac4a-4836-a687-85bceb36acac\": \"0200d07e-ac4a-4836-a687-85bceb36acac\", \"216c6559-336b-4dad-9799-4b97091755cc\": \"216c6559-336b-4dad-9799-4b97091755cc\", \"22c2f1c7-5c1e-488c-8bac-d5aa917d73ad\": \"22c2f1c7-5c1e-488c-8bac-d5aa917d73ad\", \"5cb2ca77-8c68-4eca-ba7b-09fd6f940847\": \"5cb2ca77-8c68-4eca-ba7b-09fd6f940847\", \"c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a\": \"c570b9fd-00b6-44cc-9eb6-3e013d8cdd0a\", \"a5d51abe-ea19-4749-aac1-0b15fde47d8c\": \"a5d51abe-ea19-4749-aac1-0b15fde47d8c\", \"8035ab1f-a41e-4fe9-bf09-ec5ca904acef\": \"8035ab1f-a41e-4fe9-bf09-ec5ca904acef\", \"a23ebbe3-906f-4680-b1f3-a8fb40303f61\": \"a23ebbe3-906f-4680-b1f3-a8fb40303f61\", \"27461456-384c-47b7-b8c8-98d570467a6d\": \"27461456-384c-47b7-b8c8-98d570467a6d\", \"aee00e79-c56b-4bd1-8a78-2057cc30c0e8\": \"aee00e79-c56b-4bd1-8a78-2057cc30c0e8\", \"724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a\": \"724f31c2-5a6e-477f-a1ea-1e3edaeb4b4a\", \"892abaa6-8499-4327-bb96-06284025b901\": \"892abaa6-8499-4327-bb96-06284025b901\", \"04b9e023-54a9-48bd-b155-eb593f297bdd\": \"04b9e023-54a9-48bd-b155-eb593f297bdd\", \"20cb6038-10f9-4d16-b107-1cd06e1e0e6a\": \"20cb6038-10f9-4d16-b107-1cd06e1e0e6a\", \"33b4d705-5b0e-44ba-9e0d-a823990bf169\": \"33b4d705-5b0e-44ba-9e0d-a823990bf169\", \"c887158b-3381-4c4b-acfc-233bf64aebaf\": \"c887158b-3381-4c4b-acfc-233bf64aebaf\", \"180e4ce0-e01b-4b8f-bfaf-14189430a48f\": \"180e4ce0-e01b-4b8f-bfaf-14189430a48f\", \"cae614fa-03f8-4886-b62d-3b8e05d62d75\": \"cae614fa-03f8-4886-b62d-3b8e05d62d75\", \"39cc9373-6da8-4f5a-95c4-4e81f0f83b35\": \"39cc9373-6da8-4f5a-95c4-4e81f0f83b35\", \"50f9afff-32fd-4345-a9e5-fb54e7ec2c63\": \"50f9afff-32fd-4345-a9e5-fb54e7ec2c63\", \"f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1\": \"f8f8b6e1-b323-41fd-85ba-6a4b6e29e8c1\", \"7160204a-9bae-4def-be19-1aaa04593075\": \"7160204a-9bae-4def-be19-1aaa04593075\", \"c030132a-f9b1-4ad7-a328-18b6530adb71\": \"c030132a-f9b1-4ad7-a328-18b6530adb71\", \"04023cc9-dc58-42e3-b4e5-535bcabfb7a5\": \"04023cc9-dc58-42e3-b4e5-535bcabfb7a5\", \"968e9f84-ce3e-43c7-9e73-52ae72a4f8bb\": \"968e9f84-ce3e-43c7-9e73-52ae72a4f8bb\", \"1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885\": \"1cbea5fc-1a4e-42d4-9d8f-c0f5ad4a4885\", \"2d5ff229-5b86-4a90-b589-649b7320c30a\": \"2d5ff229-5b86-4a90-b589-649b7320c30a\", \"961c0993-1414-4237-9fcd-5e18abbc1f27\": \"961c0993-1414-4237-9fcd-5e18abbc1f27\", \"5020b73f-8873-4bc9-a860-984ff814f4ea\": \"5020b73f-8873-4bc9-a860-984ff814f4ea\", \"8e2e6e89-ded8-4515-9f9c-53a543c290d3\": \"8e2e6e89-ded8-4515-9f9c-53a543c290d3\", \"a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d\": \"a3e6ae4f-aa90-49a5-9bf0-9721d367ab6d\", \"e5f227b2-6b9f-4596-bd0e-9efb449a11f1\": \"e5f227b2-6b9f-4596-bd0e-9efb449a11f1\", \"8648d275-f562-4f15-8b2f-98dbc599a3eb\": \"8648d275-f562-4f15-8b2f-98dbc599a3eb\", \"9cc69d8d-10c3-4775-a835-b59bc19029c3\": \"9cc69d8d-10c3-4775-a835-b59bc19029c3\", \"2eee2bd9-d3c6-42b6-a5ba-161c3140627e\": \"2eee2bd9-d3c6-42b6-a5ba-161c3140627e\", \"c676c70a-da45-43e0-bd7b-5cdd29aaddac\": \"c676c70a-da45-43e0-bd7b-5cdd29aaddac\", \"323d4d8a-4832-4fba-a5f6-fbc36be4955f\": \"323d4d8a-4832-4fba-a5f6-fbc36be4955f\", \"627f64b5-cc0a-44f2-878d-1f6b1b555992\": \"627f64b5-cc0a-44f2-878d-1f6b1b555992\", \"2c18f16c-acca-4b17-af67-b8012d776564\": \"2c18f16c-acca-4b17-af67-b8012d776564\", \"4806f4d4-e0a6-42fe-bab5-a09a31869025\": \"4806f4d4-e0a6-42fe-bab5-a09a31869025\", \"1dcaf295-e021-4a46-a0b2-b702b52a6625\": \"1dcaf295-e021-4a46-a0b2-b702b52a6625\", \"6c2e21a2-b490-4b89-bb56-136d64d5176b\": \"6c2e21a2-b490-4b89-bb56-136d64d5176b\", \"419073dd-6053-457f-883a-053dd428f9b1\": \"419073dd-6053-457f-883a-053dd428f9b1\", \"f3d8f307-1cf9-473e-8720-8f1edb18be2d\": \"f3d8f307-1cf9-473e-8720-8f1edb18be2d\", \"6c34ca18-ab01-4b0b-bef7-c148cf014e89\": \"6c34ca18-ab01-4b0b-bef7-c148cf014e89\", \"b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431\": \"b7aa2bd3-f6ff-4969-a34b-b9b2e6a66431\", \"163dc7ca-a294-44fb-9218-c6ed5185d210\": \"163dc7ca-a294-44fb-9218-c6ed5185d210\", \"ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e\": \"ce3ebbf7-81a2-47f4-ae0d-f5862aa6836e\", \"2b2ffcc6-21f2-472a-938b-b1df7e9515a0\": \"2b2ffcc6-21f2-472a-938b-b1df7e9515a0\", \"028f2cbc-d5a3-4c41-9cd7-ac718eca0b12\": \"028f2cbc-d5a3-4c41-9cd7-ac718eca0b12\", \"7d9ec202-c582-4890-b9d4-401a2ad0db07\": \"7d9ec202-c582-4890-b9d4-401a2ad0db07\", \"30b0ca3e-2620-4fe1-b097-72c110d705d1\": \"30b0ca3e-2620-4fe1-b097-72c110d705d1\", \"0a2374ea-14df-444e-b8fc-a813df7bfa17\": \"0a2374ea-14df-444e-b8fc-a813df7bfa17\", \"70372725-dd90-49e5-ac9c-37f51dff536c\": \"70372725-dd90-49e5-ac9c-37f51dff536c\", \"c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9\": \"c03e3b07-6ad9-43e6-8e1f-341a64b1b1a9\", \"907087b0-4704-4abb-bf94-b06d63fc3627\": \"907087b0-4704-4abb-bf94-b06d63fc3627\", \"17304c45-6861-4e54-9145-85d48955a89a\": \"17304c45-6861-4e54-9145-85d48955a89a\", \"6b970b7f-58be-4c41-be0a-d7d9b07203f0\": \"6b970b7f-58be-4c41-be0a-d7d9b07203f0\", \"d69726f7-c633-4f58-9ce2-20dabee28f66\": \"d69726f7-c633-4f58-9ce2-20dabee28f66\", \"2fd2ca3c-d471-42c6-ba5e-259b29a4768b\": \"2fd2ca3c-d471-42c6-ba5e-259b29a4768b\", \"9389dd14-1645-4a0c-b5b3-61df42c6bf08\": \"9389dd14-1645-4a0c-b5b3-61df42c6bf08\", \"f350b3ab-7bc7-440a-9d8e-81046830991c\": \"f350b3ab-7bc7-440a-9d8e-81046830991c\", \"be0bce66-2562-4787-9f85-5fd437201f25\": \"be0bce66-2562-4787-9f85-5fd437201f25\", \"0ed5e479-952d-4459-8e88-ecb54e9a8345\": \"0ed5e479-952d-4459-8e88-ecb54e9a8345\", \"14f74901-ad84-493d-98ef-f6e18569dc84\": \"14f74901-ad84-493d-98ef-f6e18569dc84\", \"0881a8f4-0cc8-4880-882e-5c5b4acdaaf8\": \"0881a8f4-0cc8-4880-882e-5c5b4acdaaf8\", \"de36e662-d776-4bd7-8dc0-835d4c72d550\": \"de36e662-d776-4bd7-8dc0-835d4c72d550\", \"30250a1b-e5eb-43e8-ba8c-12d181b2de8b\": \"30250a1b-e5eb-43e8-ba8c-12d181b2de8b\", \"7c1e72df-7ff1-4e73-987a-8c8706c5066a\": \"7c1e72df-7ff1-4e73-987a-8c8706c5066a\", \"3eb503e4-29e8-4cde-bfcd-3bfbf280aafc\": \"3eb503e4-29e8-4cde-bfcd-3bfbf280aafc\", \"36121d44-18fc-4594-a21a-90e168f5082f\": \"36121d44-18fc-4594-a21a-90e168f5082f\", \"89120f0b-a7fc-4534-819b-3028f03632d4\": \"89120f0b-a7fc-4534-819b-3028f03632d4\", \"9acb9a18-b522-4923-a80f-b5e39002b6ef\": \"9acb9a18-b522-4923-a80f-b5e39002b6ef\", \"6801aac7-95ab-4b23-ae71-5ba8e456b7a2\": \"6801aac7-95ab-4b23-ae71-5ba8e456b7a2\", \"b5ebb767-9e90-4877-b891-cfa65ae8ac8d\": \"b5ebb767-9e90-4877-b891-cfa65ae8ac8d\", \"ee27b20c-0d1c-4eed-8b0a-ec42beb60e28\": \"ee27b20c-0d1c-4eed-8b0a-ec42beb60e28\", \"ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3\": \"ec814f94-6d0a-4f4b-b5ca-b781d48d0fa3\", \"a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9\": \"a733a156-c4e7-4dbd-b8f7-f1daa37b4fb9\", \"9411a935-9ae7-4828-8dde-6bd65f725c38\": \"9411a935-9ae7-4828-8dde-6bd65f725c38\", \"2da03df3-b5e4-461e-bb72-d20938ceed7c\": \"2da03df3-b5e4-461e-bb72-d20938ceed7c\", \"de777270-1445-4579-a17a-882d7f4653f2\": \"de777270-1445-4579-a17a-882d7f4653f2\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file +{"index_store/data": {"3c748b5d-8c91-4395-9438-cb3305f308f7": {"__type__": "vector_store", "__data__": "{\"index_id\": \"3c748b5d-8c91-4395-9438-cb3305f308f7\", \"summary\": null, \"nodes_dict\": {\"1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d\": \"1b9357d6-4c8e-40b1-bc5b-d13f4c07db7d\", \"9a7dd336-5118-472f-b99d-c4c0fa26c21c\": \"9a7dd336-5118-472f-b99d-c4c0fa26c21c\", \"8e356062-c915-43f4-8410-08a1b8c52ee3\": \"8e356062-c915-43f4-8410-08a1b8c52ee3\", \"719212ab-2bff-4581-b60d-e36578236552\": \"719212ab-2bff-4581-b60d-e36578236552\", \"759232c4-9bd4-48ed-a2ad-f970920ceeec\": \"759232c4-9bd4-48ed-a2ad-f970920ceeec\", \"67cb5d79-a63d-4b93-a85f-9f897a4ff177\": \"67cb5d79-a63d-4b93-a85f-9f897a4ff177\", \"bf21b013-39f4-4eba-afc8-a33d85670371\": \"bf21b013-39f4-4eba-afc8-a33d85670371\", \"968920d7-bd82-4952-95a6-68a06af2bda0\": \"968920d7-bd82-4952-95a6-68a06af2bda0\", \"73bcd66c-2e87-4ade-be00-4d5267a0e495\": \"73bcd66c-2e87-4ade-be00-4d5267a0e495\", \"9d9af823-92b9-4c61-89b6-9c5c1109e8b0\": \"9d9af823-92b9-4c61-89b6-9c5c1109e8b0\", \"c0f29056-12b9-452a-ba99-b205d18c30d5\": \"c0f29056-12b9-452a-ba99-b205d18c30d5\", \"243b2cae-0971-452c-aa04-1d071f92fa18\": \"243b2cae-0971-452c-aa04-1d071f92fa18\", \"7e60c684-f896-4dea-9bd7-7d27c5f299a8\": \"7e60c684-f896-4dea-9bd7-7d27c5f299a8\", \"95c10e98-6535-4758-ac9c-cdce1ed37540\": \"95c10e98-6535-4758-ac9c-cdce1ed37540\", \"13b8d581-8998-407a-86e8-4f1a70456028\": \"13b8d581-8998-407a-86e8-4f1a70456028\", \"a35cb220-4533-42b3-a062-56ea0cf37bc0\": \"a35cb220-4533-42b3-a062-56ea0cf37bc0\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/local_data/private_gpt/qdrant/collection/make_this_parameterizable_per_api_call/storage.sqlite b/local_data/private_gpt/qdrant/collection/make_this_parameterizable_per_api_call/storage.sqlite index d54c8cfcb0ab3681936db9c953434711f089d12c..04c0ddb637225ef6ba90d1ef8953caf5ecbfef78 100644 GIT binary patch literal 196608 zcmeFa2VfP|wzwaPlu#7}6upe76fY&61jRj+fCvdK2!UWG6+#-4Py!+YVn+dKq9{Y} z(tFthBoJCi?`3k*d!r-rTWjru-FJQe_wIe~e_y!QtS{f%d(WJGX7f^(%*cRn zKgmCIX0TVdWNXpZqCo=-S&}R)ES`k_tl+=L{~7=^e*6nW{QV#Od(xuMWV=>v?pic# z^R7jkciUY3M-}Sx^*vDE1NA*n-vjkMP~QXfJy72R^*vDE1NA*n-vjkM@bA_GE)AM= zeCC-3bHcs6gZyTM284u%iJuJzk98jC<}A4l95m8d5>Dz7;48T~Pjr(;j~(tZaICvD z!r8r-NJ@i7jvCbS?+u%DWY09P2ng}@n;Z5{5PYup^qLh8?ZWS#q7_eT5gS2YHpBjW z0-;SRVy`w2+T3na)26&lQ5#d6EFm#b|F6CW>U-cfJz#pbag#+)FN&Nob>O(SMhtxX zZ?MaoLwx3ravMI^C3tASNVhiwCI!2PyABy|=Q7SZz;*hdz>yQi&vTtV-geZG;TWx5 zW{jDoHeTJ`S}b6x^p5XLuaIz0pP&H0knld!!oz3u2@du33koxbRZClp#=&A-_{>>8 z;j31z>bYpuf>k}1HuLoK4e$x~^rYV!2KcU8`cgk@CmU-UFYn$q-v0i*?d%<`dwV-r z`S$j+b+GT}Xahg(ZB{L9GTYB5Jap!&DXV%6*D5!l{`-^v80CH4veFKiK^Bght?nah+e)HO6L zdGC7)0xx~O1R@&S{VJJj5jzbsNgMNZf|?U<3cU6XWAFjR&75fYs0%uy6WpraClRD%e+Lm3n)~%Ol}uXmVueh8?sbWvyvG0;fn7a3LL<;$EYJ~n zb(VQ7NbBz^Qz~HzBjB-}&3kqB4?|T<@oLLwbb{pP&3nF4;HZ$vIC4ftU{#qh5CL+^ z4yp(|X_&7@=E|e)5}DkNk7P32hH{8d_}s0g5&}=I8l;k`j;VwQ#&GDa6U6%*kq}tc z^@}Qig=I;nhB!LJ_4xhh5H!uzW^AC#JQtghZsX^=xJ`x8!6#x;fOWtqw;(tgxLCQ* z8x-vBHr&R2-tf8ZVssd6hs|32H;)cZUj2N1ZEYQT+gn>Z_O|P1S}9bG8d1<3dp(J1_ZQIwBkn{f!*wFqYzXry`U1Lc8nmy6Z))^$Yl2zY#{LS z?wxcpB_l5o@WfaL84XV|YCUu^=~s>kIQimygUpE)!yw|aybB0e#>$&28fLt;SVQ1x-z<>H9GVje5mHBk z59$ONvx_8x+aER15ctZ)UkOM&agux>^NK_!FIo%=>}sRa z3K`SHBm;rRhl+iVrSCBBPHFRdLIzSbI~wW;Y~M#&62ZL}7pnvXuT2-GX7V=%nd1Gs zHG+&O_k>BfF+mu^Z-YvynmeCJ2>iyRVqtDhb`y|4txBYF##-nWSSIJwt`K4ACXajq zUNWPLj)oVH*()Ki(#@j{G8xW^WO&NB01%McyLv7eW;m~w(eUy^A8G`~uE{DvUef^z z0*h|&ca0!@exQuNqx*&#Wby}2fe2-)C#=&D_?7up!qhYzOu#c^x~Z6A$_#MB9pncKT((?d!AI#u&mc|4T6N{%sqCMe<_hUv)maX zEaJ|UN|~VAYOOE@Jx2)0?YvCG6f@Zts0jRb?9y9DaDMx%6W1%RcavZ}hOt{knvB4IIDFh7DB6;*BCzP}T@WEvF~Ub8FgCtNhGki| zHprOrZjs?PZi-V9Ubo_sMycX?y$EEBQx*!D(k=li0?TXmxj`oPsRWr!(pT?5gk|wz z4}~eJHdHk1*7FO6Ikx1ggoc-$nxi7HqQFoBp1J)giA-^u(-0wbDUvA!rj4;GLCwKW z3HZ$hYjiT%85;})_^*2_`0-K;`0;`z{Pq`S|-N(Vz=iu>n z@IfxvWrDM<%aAeFuG0rbjDnWh{7FlJ*6#D1=S*@7gj(*fPWbW9$9mLY>uK)uf~Jq0 z;2P*|Gk)%*31jBD&Kqxq>(u&BTJjBoI~~(qr%$ySIl)>AurlC%8wzHLz*8PObi=rQudCHp3&_ZH5NHb#!~zdCss-<0IUmpWNLBT8(rY z8t4M|TP95pjF=ScJQrJP`Nu5{bD1+~`fz)fA>-l0t#gF?^gz)Pez!QPc!bN4 zw*p<CcQ6P)2n<`_FyH+R^kTx?xn zotpk}OGDgk-ED?jPa5I_z3XfPwV)+<2jIOMHRP>e=qKpIKwEd%LMKgkwsnOopH2Rx zCD;nxhR<^ec7b<1C}7eMXlcl_ph>W0!d*7FhUyMm#z1=)*ybipcq<66p+50vE&ZqO z%{Bg$mj3g1eH#5qOaJ*R#0}qoQKk9sMwKD|`3pEOd_BQZbW06j7~5a8OF`gqA6{1p zt{i`h49ne|tfOH$@slKiyyeeo1m*j$=m>mA5A!v(glEo5lqx*miGZ(8|GPpa{b{@e z0qx{>{8AP0P9K9H`PmQ+fuC_*r4S@me=kh_fCvy!ODmj9MsBcmm`>(Fw?z;kRoyO5 zLf|Q*dkB--x08m3@kzZ5f-+X66Wp8fx`Mz9{X8TxbxU8=2&&q;67c-bGi5US{YQ{t zg>1h_nbwbn477a0!BQvqe)%2+fnTk7P9rc(F=SY&GEOCvZ)3i)RP<~kiOi{zYMCI% zFH}chv2JY?0@JfyAVPx$pME5h$qQbq5}dy{n1El~6seH8-o$(%sMI|f1k{S`!X--i z#SD@WxUuFd1%XveKVlFhuYEv<=XyE|IN#M*qEu$+U>$+S4PLDfB#mn)5#&3YFJ~2G zx7Nv&w3;T1)SYew%zyDloy^gs^#%ew#e|LE>RFz$=W=b%#Do05<$X(3>ATuuW14i;8e&= z8G&bdbl1t;lrl9kQPZu-@RIl2f`BrGSIqlG?6%elnO)1$b%KmLM+jJq(`5w>EBoe> zK~Q4RnSj?OI_P9F28m6J7i8~H$Rwz%G=i9P@sjzi(6?nYeBX^_5TU{J(2gpZ^!uk2 zg6oVkC5KtP$C9v^B12R!zw2)wAm&LGHm$5tmOukNN2RJTr-2u!Ot>jbfPwyOy2 z!n*??LiHm(&&p)-q)!bpyA~eN2+lv3qad)nFSZfz9G6xynf!r15(3Xl-l8I~o%yK} z0xvo{T_cEmRqW=hTv;Ph2M=6ODRr^`Is<`~ys<$iV{{Q+$It3*MJmhnMTt^{yDJoe zyrf$O0xJmYt`g*La?}abpcf!Qs>tdK0r~g3No1-QHrEk&-qX_+f~vsV1Z?Z`=M6F! z8;kDcS2l)$fWoN_TZz=YiOqC0EaB*95CLL8d08V!dsqn(OispKVPYq&6i_gHsYso# zOp<_xF}?d)1%Y1*cvrw?-zgfIBU9@jLMn5@VwJ#n>yAcH(D8W*fmPf*WsoU*>55Fo zv~8wJkXG`Pg1`^z_GEbBkp^T~R%J^WQ>=9P5CefHmwYD?#7mwkK~49~GC_8SsXD<& z8($W1?VUR^nfTAw7zD<)Mi8OFeycG?0FOl4Vwj=;`7aYH3@ z?MSgfke^blAuv;$H3BY_4Up0B-TLz?0=rPPMwr50{yLc>BTlIVku5hE2t59kT#2B3 z$EyYcyHoqLP9}QGIsv!pMk!=U3*LqZwGzs1>B6-CKp{A}$AF0IoE0b`u&QA@G&05= zv9<6tr#hX?xhgvqft5Ub*&uT%+)^iV)w!iakYrb_5>(qgqY>O37;O+3HVw$|xd$a3 z4L{ehL_uJtcfQvM((g4<39_3+L4?%JUWFP0ug*L{hG$I|qXdg>?I%;}bc4wf0=t&x zr;sU3NHoLH)iRmb@60=6>5AiIn31|#l=-An4HSXudxIAUliaJJgoZB~(@#ZUh0|;y zg1LF?fI_gjVTMdlXz2(MQrBN9RteJYCTRqxeR}B#EcUziWrAy^6Ci>~>ZS^FIKPg7 zm%i6rnApI>k_DD2kQ(a*sfn=)0fX&0rgqM!DjFW06=)!^m~#~b-1PKpiOlvLE;<4)4KNu5=fk?m2<-Uu7X=hqZ~^&y z`m31Yg-NP`z*1uOLd3!ytaSvQP$Cns(j(py8kX>A7y-Y~$=ML*`!@)9vG$sdhVT01 zJVYp5qkT=lx31r)qT#Ve_G<)5W3LJmSM`B{hSeJ5HG;xp)+z#z8?w?MQ?W2cBPe^) zRhZAeXdqMSY@3$_r1%AhRQ9(&>X_n%@sl6|)DE4l5hOjH3}qTzE>f5J&Q&NC zx5qrBl)c_nLc{i6zXlP&bh)>Hx-Q=-X!!NcPBOuYCKC;UuaBM*ChI_kga+>7_fQe| zhBw{G@Z;5w$grB89tx&d{GucQW&O-U?$!4*bxIZ84}%ER!}tp-fl=@`VdBfo>zrMa zrBUkU%7+rcRoB%r0=qV`6e3j5pAaOVc*Ag=%&gf#5&}CiB3mU$D(Ws^%`HcTOm^H> z0R?L;WHkK7!uw?S#UH;=$>^Vo!GT4ddr?BeD(}Y$NEjGppy5So0|AxaMG&x@i5ZZA z!nvWo8o~A+rwI7_&BP02F%P{AO649dq7*BB@hf2x543>{R8Py?BO~y-vF#;-OSNY; z1XkoRR1xrF6EggCnz;{4BeNj`wc@H5>jaAxH0Wyyf!#W?MJFhW>Z>B~I`+Ookm|5XMqmZEf;57oW%~_+ z!bTwq0^i>BO`S}}^3@W-!xPcM1UwrrOm=1uVPa$54GU~A_v`%%0^k0Ut4wBh{~p2= zP93MA;Z-?L=>#eL{bhpmZRZpM<4ZB}^9|3=2LTPnUD_zXkh{oaiq?Nkz-#?wVe&lY z3$yFF*_s6|qWI8i1A&=3H6_E!GkcNYv0L{jl)C)(HHc6qY07&9JkDmjfrg*&&{ZcW z`|ue>z%WmlAorLgOzceaxZz)rp<;^V{5=37z~y;^H3WY2omw;&P0*$cTA=_#A06mU z08=Z?gGg3uu}<9RlC5DGUN9$9zzuuzfhuvj7{b`mS972Uv=iAyywm*TwQdHPqkUgd z394_D67Z_yx=yAzytPblxJ9{!!1G3RAYgfmQ)M))(9}snfRm~h41zu5OEiMq4Ou$D zrI$?-L2=Wj5TS7N#3=+U|KU=d%=XwlG6LHcYt+Ef|yTi4Fdg@zY(ys=w3P+c4WgGh*14l zb-Fbn*MEFo{Sgob%dc$W;nZ{6NN!)u=UP(fh1=Qha% zb^LV!7Z)7W$)sK%tPrG>Ka>cLp7k^kc)^|x3PI8C&SY55<~|Y{mgyZVBk;(`9tJ_# zLK}!+E;NtU2+mELq!1K-?j#|wD(mCJljC-wTt;tls#FPUf7Ox#e_+ z24q<7gD?qGti~&kfY(^|QphAbi!FhF*K@W=m0morQYw9Hv4+6&oAwkY(dek7VOQQ{ z5CQhjUZWxK0L4NT)q_ST1gXnrKm=2_^ks=4Ir%$b(%tTp zVRt^R()kg9mXyg_DX#p`HTbk0kZV%OH1ccP5yOpQ`Gm-F1q~}5I|m9=KA^iosk&z^1mwBh5~;H*#A@&_@7IXb z?S+?A3v4iL&MboTV$L{D~e4nQbARAVSMGo_Jb7 z!K?FhGRG43stEkz6Kyqu+7Ev)2oCz^>I8{9o+ZQfU&tlk*~>J@K&>)my^O%FKl_40 zaAQ%VfxzRIBh+y)= zzf#ELz8Px}B((6?2vW}MCEzs{<_2@_wO294O~*D%1ZkZ&=?HAK-D!i2vGk}!P+2Z^ zJsz|5o=ztI>&7ZU>D9{u;?g%5WPVuQM<@8^-A6J4OFTJOAt-KmR3j)H^{s@!tDG_j zSnWLXHdgp;XUIUUga^4Q0xzv>rV-S<&{ZPHyF1n(NZ9=eL?{#2f$IpYtnZTsnbNXS zh+uM??jYa^5A7v1JZ^Vmji8{mj0~$?*iS{nN@APp2s|(9szjzh9;}i{bZn^+B=J~? zP^RF4y@0~Sn{_f*J~8)v#-21XEPl{_2~+G*;rA*6Ke=d?LZ)_3M`3anuGPrYtV>e} z3KHLx5qRODMg~E_&iexLLRA5WzDblJ<+rry46lfwP%mG46s*Y{cmyz84J|B& zhgi;-89E&v`05+x7akrEGPTc)2+P6FBb~>(dkz{qYJ~Gx&+%hNS`M)6KGV-PAgq7i zzCocrUP04B!@~PJ*!FYkZu#Ql;sXZ{b{_5KIe3(-o3pDMRGHk}YsQSA03WaLfY6Y> z)5AhTx=;DJ_*mz0<43xAj&mM6eBj98lbpxmLa5NsW!wgi8}WxF%xh?FW6;3CBb;4_ z{6}kPuHZJ@#d*>wS7$6bFf72U?+CB(X~AA0zO%YNei?({VO!5}gWqr-GJYhMn{U}Y z+$$`wclb;%pTHS21AP3tTlP0gAjo3EZ)P7X71qbg*SEW6FU#&>KGXbsX9ZzlOKYn> zR_MHDP7QuTB45;h6wRP#zf8^0`Q&iBEUgN5RQ(4Mox zeW3hMcyWGMSL7_ESu=dS!u?<+!UKZ+=7om%{n0y0OY38~YH6#`nE_J+LcD@J!~N!l zubOzbLH(xxe|6JewbXKk*HqYNyuAH_RxNE{y=rN5{{Yz1LcD_gASpJ@J~Mp%;fVs@ zP#;fvbk@Pz-qF|I2Ol}`x5kI1Y5G@C3W=+_V)Ajg`pTKh0F>H0u}5R?giVs7nu27#rTaa z4iE7N`Tg+i5%Rn7+aqLvN64Rz;2t3_KCS{s3k%O*kKRjEH5(*MDV|7KJdrGGQ7KYneVzZ%%7=zQpu-;V7bA^jig?!Z{$cjLQ9NH6d| zjqp?q$9Umsln2+tBgBpj{Ok!87SR8HKiYeQ;BfB|^7DA_5h4b74;TV}HR3~aza8=) z*A|2R&o#wn{5UHHevgno9w9XJ|6K0z*!;5z4THDrXN|x9bOeCvKOX`-Lf|EO{K-+k zqbt33k6#V&eST^dvOVGD&6q)N#N(Bv_I`Opz*a=L-yRgG9vv2_8Igw769)!bwa15s zKiMqI?RtdZPWP(=#6M-Zd~snxBs?m=XsU^nc~((scn; z@tf-tG|Sh|*OLwso{x_Uo`HT5VbIXz$8ADU^I-z$*W31#Up5mI6#NH`{JhRk*1VQL zzj$@<+ke#lOuryH=?|M0Fay_XKJ*3tq@!bi?_Yk&uo$Wm9x=lYE7@VUJ$}*D;xE?e zpVQ;hyuzm8qV2t$Y;3%p9R2K^9IWje{H(m}?40a=WXR^%>*U~P?FC;L;ce$+<=4;A*T&n<*UQVUpP#jjy_dsZ z82s?)h9AyxWc+XcTvIX8gkOLy|CIez9XRD$0OvHby@F=>{km9~-we1K z2VbFuZHt}r*GGOg*v|2=-*o|8ZxELZ@C;|w(q@k{@U32O-Zd*2t|H*|hiM&_TF&(I z_cULQnATy|tffzRdd`UOh3^In@bQH9W_rO_eYq~}_zUYF;1}c@<_UW~q?WDfF|Eb4 zrqh})U)uf`W#GfsZ0H57JIlKdeEe^A4=)11{P2r&4T91~4K)N-H-C>zP<(ke0Z%{g zsFNwb;xA0r;^82m@U7J;5(3YS>!py1yKKILm)iHBIkmn-#}vwy4M z+Xu1*R?m^!L4=k|$4rt4vP(NF2rT;4$1=eU#abgM`r4}pyItunIJ>@N=0D&BYy!Wn!l@&*}ko%M3C2FseqJQJ5@CNPE30lft6OD6(&=e z4+2ul$5xVI#%W6h4Xd@AB_r?~HuH6YjDB5Zg7nkT8bMCCN5UA3FX&{FAB=(swa%4_ zrSsY%xEh8HX1}@2Ah_BrP9>;)>p2O5Cyp?`9OJ-ckveMizJV#0CAXCc_U{}35enxH zoFO3XQlUoX+9oCulzcExK;9SYKtSP`guiJ738%l22;xt=D+GN1VV&SsAMsxB#5OBs zGMQoBB?NY9&`1KFySGRulRf96fxy$MD12x2{0%bkd&H*BGF~@PieLS{O2HIMxc-eW(VP2{;RVxo7?|SOul3OoSXEYrP7r(E zyjPy@RHc$hb)F?5@Z829DgPA8~(?P-Z1-?@V@<+mdV z__cLcWK8kWMQ#uQ@?ZEuA~+FYO~7Jvm#bv*KIlV+*Udix0u~XwtEB*w>rj!(ZQ&zR zDrfZ&g&;MxL?g&r_=%3dFZ1;hnZ&hEsATdM?AFL!PYss|N?Np55qRDqdon!hrH2xk zgeToJg6#`Jb%N6V=DWL_E*Gn4ShDlqAp#`1Dhfe?UvGn;qWuntkg6T!D-$H7n}>_U z3!h48c(uQiLQt@>yN19_Im^hfU0!!3GJNxoDgv+B9xao}ojph*bK>|9Wca1nWQ|P8 zfW|68ao|)(G_1l4S&bH{nTxAoJ^uDna^FvO;jGy?EdG zeK!e9`exMQLZ1PhH;?lZ8gw(|+%^5N@-$b2OtldrKr?Cu6zFFaN@YIZL`7hi!W#+5-qlej zlYhItL~yNte~qB+;k#Fj*9fkUTqPj!xUC{gXEy?t>yRN*#q^Cv z&`wJ1K$XhmG;SzTm;A!XuvnW<1>~i*QY>&0XT8u$;NAbb^$%!7>70|59U(pe)+_DomfgqM~7mzC{v2#Z)oYu}d4v z3^d#rvX@f)`^Xdp4Kta)1&bL+3Jo+oX_*)Scy*MkN@X(M_9NgKK{+y+%>4HZg6hus zW;pYfL?-*vBm$l@MiR!3XBg5m|gA_D8^YjpikSbgKtU*xGDN-gdg3YPq)ShH`wsWR|DPH>GVjY2fAIl&D zRQQin5cr|Xqg8_Zi_gjgs~3J~5aem*-RjuBFNHBBf2m@M?XP%SLEx8CQw3c1I-;Xt z(4Ik1q+L-FcubCiLQwvEfJ|`gd?Ou!oqeO10Mo)o3L2ii>T`o2*)m2#V5aY{Km@pO z_tca_Yw+5s{_Zj0qQ0ypl33zNOv{Bn$gD-=rIuB1v5rm(LERUfR0JMXcvB`gcz&`%VA^?5K=Fi@DjIgS-^&mI zj_*As6Abz4En&`m8%>61p6Ee_C%<%9nEc2I5-4~|bXcBBkZ-!7A@Itz^JFrIK6*tb z$Zu~65f@=0wr76MrK3m{Mt)5xZhFN*K+45Z2?(~a=q|z(ITz_@n0ogI0dci=4K)1P z*Kgpxp2fQ0uT)LBlUcyrL2mDjN&}`H?XIvRHDDY3)ysykoFWX^a!At24Y zsfLE%cy6~uknj1OioovVy{r+eNqGbjOnGNR7$fErVJb{DDyDeO>XSMGD{fIF6J!o$ z3Ieb8dqpBRFl>m7z&`o3xqvcWDUrE9>H{4C{%g)pN0@t-&rBrCa%_tvOtX~5hhzkv zxi&{7h#hAharS)IUO~f_zY+xz%A_b!5}ESA4JsMkeY;MOYaKCH=Y1h(PYQi!mK{jU#_2+q~$3PE9kH$+G!-K`XGY4ZCrnabn$ z6a-fJ%xZ(+M6?7E%*FCP1_DpWO;QL}-Ti`qr3Q&buz07pbxbki$!{seFF*IXfrcjy zZlM!Iz1>hHFuEVo2=cdB%LuIW!)pR=zww-ohTqoDO9;%^Hd`S`jJhKu@T_TPbuw8& zPZ|VCL$}HZ+^~8mOx(qhDw){N&&dcZ(ll6@4XNu4GO0(lY6K@2^wkmg3a@H|fZI7J z2(0koXpKx-=Z|%Qf^q8&f|~g+kYS}Z%T+Q}uFVMG+4bJSBpu|h;wEWhJ ziwYUuJy<|ec6XUf$xBVm5Oh^X!|Gl&w_{4&V30AE+e3s@QY#w;fhS*?q7x*BL5 z-9#o6UDQw^i0idfz`E*vDjJr4_b^0&oPDx@f?IP1{Od=GMO41 zH=Q8CV~atMEKe4Y*{4P#li#i>M5tbn5l_I*_O?{eFw=B;8L;QB*2wVc;7}^VlTz2J zRHnes%Rt~+>z{%MkoUq;34x__*9(Jbrjv0#;akTBpJ}t|bI4J!idur~+q+Qng>@Xax5YpHmUo@#7H?0ai9P zpBiSRuh-DP6y}^4I_?0}ab{Ur#BPcD}!YhUd0* z6HxVB4~Cdhx{u1*k}+dx8KYnz$RR2DUvr;xcjv^hkmb-GiWMy9|& zL?x3GJwzf?G$>0ZxV^%i438?Gp`zh2U(S*Vvi6-OVDW{YDq#L>inVW}`gx}RSLd1j zpPFJ#FZS2B#9?msAKws%>ES=!4u@IW=6m5d_xtgq1eSOk-16~V@SmrB|LP_hFaF9O&%~zdk6!ghFPQ&d z|D@(mPe|aUmtQ=-PX~?vo+mZ`;4;(y@RJu3{!MlGVho?q*?u!U=_?>$je6q1@axC! z;4>9mhBAM70s9~ z{O$dm>>c1Q@xcQhzE(~S4i0wkr=)G|d|)K@wek83W9}~>`1mhAssf$;yV?I@s{e22 z|Jyr4S$xc-e*V9Ba^QFK|6AaVj>EHpRJarX-wOEjBm!o-;Ur9A-c88B-IbEVgJc9= z>mcs-urnjOg8)-~?zWD=61L73aJj^M-|yRHbuy-SQq~5DP$sYOFqNQiQ;CAW;{(o; z;h9z6f&f!7p;kcBJ6;5=*2xfNYmfO75Zs&zaaIsm@j-io%+V*GmdVtOYyuI=6x9am zWODD#7v}itPY7TtprwK-etg|x6@leWJ13xKQG$Yo@3mTOAh76&%`%y~wu>M_D)q%! z1A(P(?kAJEXXm67w)duu}7FVzpey4U8^=MuzJ%Qb#Dl6x|!H2&1ou2xW4boE1S02rR7UQ)F1> zya^haSalT{o>XK~(eRy4yJUjWH30ne{~ zPe#K{OHxz>RvUKLAamf3lTMKPs3Am1<^3>FCb)3@oPoe&H|$f$_>KG!BAD!x&*%iv z$!{nKFimTqMqt_$X%L(qJy9YkYVHIP%EbNcf=*CcXQLwUlDZ6;p!$by!WauCg206) zeyJ0rwOy?ee6~=$E?ze!Ql!dmwxAR<)(=sz3@hKZNhTX#B8kYV}Te97<|ADKJBP|pc-uANB+f(b{(1v&z+9i1XfLUdmP z4Xb|pZJl7Z_ACLpQ zPHzbft2#eWB`EuNvyQ+QH+};mr0zZxMUDjcBr-=|x+oKDxjTk{SN5#a(eQ#9A40?iJ-R zOS_+y$y9f&CBw>w-qz7@KC%HBewWz^xG;JOrI=x{SGK@q#Xb2FM1afhomL619-JcJ z{%6xMGSXDR1C{87gg&-ySDBEScoGX*49b=Jw$p8T7Fz;fO_s1lfNT$Kqb zZ5NW^xg*vPz}ZeS$Ur;C!m~647IW{iN>DuUV;O;;dUA|HCUbwZPH<+Dd6dXoG**~g z=c58LzCI=3#{A)m1y;`q{zO2*+&l>l%Z`YK2v8L!2^06pVVO*P-cFsM#F#80@RLui zAYkz|UMd%na=7v@f0n$%883d;D%VYt|$|1tCbki;Y7uVgF(C{nAn+Q{Q{h*A7r8qnz zOv>$k3Ynx;qcsGcJ2sdM&pFXiz{&?*RZOv{+1+%4!naRBgu=0x#t0~#c1$Nz*(#q5 zOW2{PXjty4bOV7`O`0i@xw5q>0grmMy+I~tqS&JNHeCwDdojt}fih80U+5^x@IRhYDH*PsZrQ&;=C zgust4`AjA#*wjlWNZT@4BghNfCleH`e2#$KZWV8!fs_CHWO!`$>%yGs|AR&;)4mT> zg6okF4T2kOR2_jEFILE8%G3L61h-C_do}&cW{FHJUnNpCj#)YyetmwNFzM0eU9bF= zgCbQiYP?KkDq4%ZiN%b3Kq+?gu1TU)&0}W%A<-Kw zr(Zu&czeud4GZ(+$P5F4r92%(hM5W%2}t%^tW&BydXYj(d7pvG(7v<5ds!j zY*NT<+;s;cq?Sk9sRVJwVn1cqAGOrcu&YOw$OK709#;|glr3{1Lh45A_6k9rKFL7f z*UMvMGB?}Y(#e$D4ix6-;^x9!n|e`zvGFqt_y^xf9Q7p`Ry_ZvLMEl?vVp*kd7Af~ zt8MLcN@W>N1T5-&6Jb8lUso-#of1b*z~U!93j)l6($x|Iix1x`lR3M5sY;N$t``~h z-4`v$u&=5eh2h^lA&kj&x@3Xvq>c8}368FuVi25r?rC9+o_onKK7Xq)x${p#5vY|^ z;vr1rk3K4y%+x~=A(j4cfJ~76V2XyoQZ3u5WXeD8Pry=UL= zD`XN^FfuG<{0kBqR$V?+L*U7S8|eg*C9X0-@w%15ln1K>EW3G?M5)ZQEfAsBxexy? zBd}BNzc0*wB}G8gCyyw_5A67nfPL@ystP%{<}z@RPLTWUPKaQPCVLfv+Ad2Zf}E`F zGC{>gu~D*{PA}+W3IZx2!a|QW=qwZLT$QOJ@cn~!62S8(tz5;f!!*5 zlYnRDb=Alu9v&hS)Wv711o3Ge3Iad&HAbk_C$}vDul%T3MZ@o0TCNjhW*j77aj$h! z$&@Z$2NBBLv^4LGDc370#o|8BkTJz_mq-c%zY=*xB@@;869WF=t%V92p4aTML~uE` znTo&?3opt9mzsZ}6P$lxuYj5^w?IIdi_2~q1nHqu1QZ^B9t1Ab=X(`_S2VSk$y{n^ z=wxFtIvPNK>>J1Us@a3Z_!Op;Y8bSF^rV!-sRb_&> zK4L`XIfr9FK&_+_^R}8cpqWl4W5U-2tbA=Bjm%XycZDElT&+qFw|kt9zzPhpA+gPo z6BJ6Ne$h^%RPM)nWinSTP0S4#a|Myf@N*o1_DghW@j0J7Z)bz1XV{vRf5b^$#P|Ka2ohBmdW@!~bFe z)c=pZ@BI(%68|e7M)-qU!j?UH{_acYmwx>7{ow!E&iz+D^w6~3FCKdMt5a<1A9@gf z;Nl-lzpMW?boj8Mr?-rhd8_KyDkFn_h5e?M;rFKZhwufH-a6^_oo`y&kftetG2zISgM zZ-4*ZFcsFiH%xZ*?d@mlVBgQt27cPxVAs|UuJwa!{owk4b#VQI>pp+_D8T=hzfy%0 z<{zJBdcoh`wCiW*=jhPS&fDAC%Fn^U*3s71%hAc#&fd=35B@BTpS?prM?3iIGuAL_ zIXYSQga1JVD}R3nTVEWl{=qX*znq`{^OdUql}|3fi~0Thf12w5oB96^PW9ja{|~Z-j>M}Kgks`g)I6wS-^d93)V3&z zAa`P}iolB336hw752qF&+f(WTv+X=$l zn!iOObANQ9PLSE$RwlUPw1AC*8)tkMwp&8aP9g2Hp=+h{ex zKN@5%O?^QkIJV|p6@lH#G{3Ih9^oQYbr2HRPUi5T!c=}$qL7JuZ($;3-?n zR5FFKxxuLI=G(BQ7GF^rW=il7g$s_=C{#G5_h5ryMPu^~%#61Tl}z=ABPhi)7Bj2n~VNo_JR$lQRBQh*0K8gDL_RTXRn%v)f**2CwaLRU&iUe~Lknnco*8v=hr# zYXs#dT@-@+x=sXq=eAd5GDS7FGz5MOrk9bqnK{lNQ?Tl?Mkb-Wy-INW$+-}r@Rn{v z6$0af01W{)zaWSJHxK8^2s~wVdxcEqJkh zQdd_GH3-h1Sf>(X)(#PnwIEg_Q|sp{A@Hlu3Sf)c^wG(j?wqM0u-J#m0&<^@0Re?g z%fApN&utwUmb>CD6;mu><}4Y37xX%&6KwYCrV`}EeJdd_W7!}w%=E3RfVvfL$dvkW zN=pL)X6PN1$i#>B)Cn%En@qq>i$BuP@PsB8WP~s*IW6l(Ls+OIVmEz29C&U}u)J(8)wB-3<{^ z`hiCp0z0>{he9Ury>E~#UhSX}B<74U5LjVPlTN1E)0Kc-YWk)s%*r4#{Q8g>jf~Om zNdcGken2Ufbk4k|6g4@nQkkUBE=UBii(eBa_HYsiSXM^y0u6!3f7sg~NVof&N^tJR zZH*u^dbWbVlG^T)$&{Q1L-e@530VeZKopz)^L&MUKJf#pAwjIgvsu^%- z!NR52JE{om_O^ivfnh&dM&O2PSBQ|x?BXwxNpds<21eqNV>j*6O%Ox_Ioaeeggfdx2N`$GdeMgw$=LSkZu#wymBP8G7HAa}bZIU!h zv5Os_lnLr04k`$If9oKXOzw)NWLSF2(*kNYe`ZkX4BIEn{xtD6@q&w=NR%?&=p|BB zQ_9KkO^b`k@VpVxnguTO%=;r{g33}^Lf|E8OO=c=AxwGTH)LR9(Ps*#_|1NzS9x65))E?)*v?JBmhv?M3bM`JlJogInaX58 zl`c{y`&J5>sM)7g1fI6tUOD20_LYar|Ou<4=p!P1geitRn3Om0_tdngVJVzxDR}D#1tJ zY?ct%o}4#iGBqXD!sG^8>SV6$>8T;G>L=VFLiG&~LS!;=9WNVXvR*0D$&@yah6shX zMx@IKe7WD>B{FFnyJ`fbhn5Ocx9^%lCg0&lh)_6r)*S(*Q@)qbu$t38GC^$rK?3UD z>}Qav>^Mb2;Ktl@iGjc}x?WYtTp8O&CsV##^gNFZ{Tu|8F`gYJpmc+-qv5x= z#;FMG(*6b#0?(K|NJe0XgAEOVUu1_RGP|orK!jAv$DgSP{FvJ*onY(>;}it8BkmeR zNR>Prq6sLnQV13gouVVK(w2QBG8eUIm5i};rcP%4oD&8??d9nj!9`c|yPUtWN+FZw zHABEdHbEv6Umc|)u=3Ug5CIM@xJ|&fDIW+^Uba`K)SV@{GQkht84#gx$%NyI0I$Uo z0#BXxnL)$0JOAHUx2vY1$3n(q0A(P2ma7mct4k-#6 ze%YA|sMx#PK*Nm2j|Ai$kYqC1dwK}CZ1KE?hF{%q-#}n#)w2k=sWL`G!>_!)lMKsy zGDJtiDyJ4}2t3|*gMbH3&wv1vccYU;aQT%GGAzEQDwD};s~QBiwtS``u=0hQbb{pO z=Y*-WY%QbVNofTJ!H2ufLqu~qlMKs#`-}kN!#5;Mu|ta;$?$^SXNAez*-)6E?Ut$q zmN}K(1R_9oQGbn~py9I$!4k)>WCVWt_UjO#OitHr!X$+D7I4R_r%tJJ&v%dzc;f8} zh2WIU2r?}8%mRZ zm>wpELH7UHyAQZ3u66PIs4+&2(U_ zmM7zjWB_Gr#;S;%m|+rttgk+rAp#N)s0c&ni!y+ozuiy3xcDatOZk?23_waZdJ9~* zB<^QYK*aopnU;{T_VfdnE>ctRl*2z678~V}C5PvilGX%k}7^5`aV% z&rq=B7^)%2_<}v^+y;4tT$_EU|}%V4NP?GkeF8;RYduV$ui<*13v`yEjh{q-==tYcZT@+beRI6rk8beEG7Hi zVhEGXAuLpz<)mUU)E>?d=_7|}0Q%s=CRk|MTx$dgqFy?VZu$1*D}P(pC$1Oeg6kX& z3N5H#odHN%R$m>F)pU#opxI8lWGseu{sO9={z*D@3U%?PZ; z0Hj#=(-Du>ch>;a@WcWOja}bf#u7^v1yO!oJZxyn!YeuylJ#A*7)7k&f39b~vyz|G z&~O|PbXEt@bJuGL#5InQppXaM>hhK2{*dogL|IZ>1wbFHsIt~w z6-M;pmc9~z@$u6e^B3{J zH%^%$?sRgilcOk6Co?1*RlIm2$}-nf6-&vP?_>bUi8McgvldxNP-xNc*$hXgfBHe7 z@ZN9@3OzY^ybK_#Zq8D%WH0|kLX>Tl8GvM5`Gv1=%X7?+SL5v|3KW`p*NNdMV%?sLBUv=awza7nOje^)Re}jzJ(9sq_gC|T29Vg%b2Ti_=LHBPtk4xKQFqcr ziEcTK2Yx%DcSooI!n%H}U`cLpOT$t;f0>LW(y=Cj#LRgmVJR|xssc#WC*cBDLz*g3 zXjMd^jJW^xQY<8TdTR*^NvkJc)HEWcS-N5r)JP65!Y;|DZEfbSL^K-DC|D9QC#wMR;8h(B%iZf=$cWopYAT4t zO-TX;nWq?*!lo;A#GwtbGJrfevrv?(VT&{(1x%U(!W z$_fuLMAUqvg2=AjPzUfAKbs%nMV$i}mb?vzGyu)pnW-Q$n_S^5-}vsTvnrMcw?^n# zqK=)Bu$Vr!k+DSoV8gJKZxdgzG;_%&9ZQLvuK`HpWGfjFQ&vkstnJfMMO?o#Uk1?Q z#j_Pe`rZN!v7`2S2|x;>=ObwH6b)4Xl-)d`BQCql<|{8{HsuPUNRtudv~_nC zOU9BJIwB{=zz}7p?Nk6szq*^R90A^OqOhM`1&nFwI*!g9ddXM*CW?I$B}CbK;;oZM zEow3-gspohBlZ_mA!rH{Pp336ZJ>&y($J=SSvw;eQCVMyul%!_KP)O_= zM^Vb(x6!avUHn7`(CkgV5`w+oTcA8_qd@rc$$Y|h-xCv}0%+hu^A}O+?XeP;oH)W) zKFT_AQ$-jbtz?M&K{gVAzic>GMa10GbO6;h=o-S%zpsLLCbbhtTwP7Vk~}<~0Z58n zJYP9tMt-0n!p1+-0W|602nmtmYkvG(`|6q|M%fb-M8-!QB>=geGgil98epp+a@&sJ zD<37zwbl`FO^q5NN)yk|Br7C=2mZEl8s)2qB3fINe3u&v6p}Eqwv5PJx`iRq?~Xvw zUq}9`L7}-br>X#QpqVNmVm5ux5GJdII)Ii<`&z?N_29XRC3Svv8IdqBMM6YeY0g)^ zaoX#b2gZJ%uVG0Y=)wSmEjY_pj`fdvBWQ8cu`(1|Hf|6@+}rLhO4zLt8Wa*n=BNO= zM32(3#GKG&#Qd+TW1*p;c35bB!&HW&xY}J5#LJn{0=b7ys!(X$gqAWQHpIqUHck{J zD|HpKfNk>p1xU>BdVGN+E4?KvMm`hmYj2w5ajXfuOuiW ze~m8|`p|I|7HW!`qQZzq&-;_0;^(Js-0_Tyv z2lVYTdT?L71i_!qs%zPGktN2~mR&h!ySPpFnB5Ui4cF1d-Muxx{z2ZF_!ogT1D9TJ z@#fVcU0>e?@TvP}U%KM&95wKFUoFyJ95TRPDdOif!(-u0ACJHHC~f=tdKi|!9h0?X zT{Y`1>uP&?d3!j+d(U6)AwKIJece5`tb5yhQTcT(J6qd3y4$ z&%tM@i9YQo`uz4hHPNT*L?3vj5*?qbcxyA!#|{hs-?n^*#rS`Je$IORx{TkRwSIeT z#vh)y_|5(CiR<;=;;HMmJ;lTL_4LiFI{x@g>tD{u`oH}Z9si!grT9TXzdZ-Oxuk`k z*G!)`m$dkgUee;PzGCssk-%?`1b%ZQ@S7un|JR=s{J-M6=<9=;JsfNt9O0E4F4ndl z_O@>Jo}RAmHjXy-p4M)T9@dWh6&`l{yyN^twdhoyT*tocN@a*DX)y2lj&BMdP?cen3j{n#TYJPXlh5v~M zTTB0rpT+*?y%6f}{H^;R9;*+Z&cD61C4OH1{>3fvFGK(GI|6*c{zUT?F3qnw`e>yy09Etyj!}A?%-<+QRUpYJ<{)Yaa`rrGE-#kA+Bi367(5USnNLbRo&67p> z#vcn!d1p8l5)>H2U__!`A5ar%E2~gwQrs~ak#A@I)pqQqXFR~0SXiAQN}rw55Q%r% zD2R*@I~73n=etF@*5G{|OWMFAGJvoECk0_T=Ex9+mkapH_e%e!v5Y8N*n%PMEZnFf zPWQeeA#%E#w+WhWtzbzV`n?JunHlE%+c`4t5bGd&SO5=WZ<{o}S}hy){&`S7tAu_sStC^UL- zcO5|T9oz7gmu-&}hIo4AZGp_UdkUl;Tdm@#tmB6=fIR4QkReVSi$&1Tch+iH?)J1- z5vgg#eB~P(22~;G%?C__LJjR|n&I@Vj3s8`CLNK}=ZFR%2JdKrfSdghw5&s@ZUMVz zo!*Lt+=|*KNk zTt`G)oQZ{0`iXmk#Ljr6!HC39^<@BBw*IArh=^&gBQC%CQXs7;S%pG!>8A>!s$mTo z;aB%p9Y9N;UQrRzP0aUv=__vqOJu8_8h|`AxCoSO-^v5u>x$=7fy`sA5rl0`6fnIN zsdMo&;666rtI@H0B`k&hL_<73rXZ-P!;hkbhA)S!?2^H%_iSrd71zr4nhz8q`dk@0J zD6yoPD2W3ONjOToVbTG#XlXkY%dtMQWki7QGb}X5a=wHm-Rc#BhTL#gpwJuZMlnR} z?R0^P&4V>8>}WV&`CETjm?n_OKG31itU#kE3Eyv5p%9}-uqa!q^^&n{tCpr9PK13b z0ci3UaZ9=V*1E3mVi!PDu7(<*F{1^tuB@U^l8di0pr_S7!;CxeY1kdvN!68%D~158awhB z!x9(MSV3frJuAxTe&Vj9*&*-9Frrc0LRG}oPwEI{?}|3#lP3&DB*{s9ebLwpr*tT^ z{3j+xF$rg|kUbF#6dXldyNe@Q`RQ^AORin0jELNxsv=C~cO?J`p0s zGgHTsa6~*qQWjZ@2R<_P?5N@>JAbl_rEq^E9ZP)07QXUrRvk-5kk|>M6e#58ZdFBG zZN5xGq@Amapn+qqYEbB-1NRh!;lLFcQQ54iK*r1x4NKC-Z7P5iFUm$xQ}6)>g|0a_ zov(bP-)M-Sm!33`v80r@)eskt)sg^|*#yW~F7IhBV4U<&!IJ6TOGP{ktSUR=IUb9nzLiJ%11CSf?eho{>ya@tjUwo}#$&G2Q0!aRL zN51mC4A0KXSdMHMC{Qq*X;>o4dg_SePmjrnCDr0Zx#ikUf zh{*0?2wG`7j0e8gt1E{!M6z+2z@yiPC>6T<%Qz~F>!brn;Y#y^_V$WI4NK0BDlvNW z?h}ENmv5;s;y*cPeC05XY|Q}Vw(+=(NWYY%Afi7z#aBLxd7$Zt+~(E-89(mPu#^om ze-ybki^M4XyR!<6XtA9ag2YGsfFl~65XL9`2J@fvX8>A0dpln_vQj*C#M6%|_{vM} zv2Qd)spSu%eD{7o1xtC5`K!rPW1<*c`)H290lOFtx5>)SRS z`F)OZ9VJ7drsK8(JJ;F^RBn&fa1>Q=M?x4C0~V5KtS)2u?u&B1@*6C#V?@w`S&9sW zrfhhnBVvj+O91lFd<`oaku*=m66>QNXu{@SBrMtCethK{$29JNg_e(cfgpvnwhSX$ zVce|)NZeY&R}Mq--7}gBR?qt?aE`T-~kg z-0f}ctZm%g?QA_dyV}_}*f}~n*miMu^R%+JcXe~Ob9Hg>bnD{bZsX=)W94XNXJ_YO z)y4HM{5vfFPW`7-Q}Tb~b+vbQ=)#ZGwsr4d=h}rIv+Zc_*`W(R<(q?xou{X@gTue+ z;068@=KtV})c@Z*`oP8CZ>GD~9JiT&`z7-GlL0#L6a3j)IXbwwS@VD0_wcmhi=(x> zo12G?hnrhx{%`&K!O2e$=<4d|VDIkf>FMHV*V*3M+SA?2&CbdN4{rH4oDA^Kf3^GX zJ|5!l9bh1iCHTVu29BNIod56t>i~ng{O|v7)#zeTx1x6cnr%7W{P*S_cykZ@>-T{1 z+qd3c)^J&f@071bj`{kl*Z=i)8q~*a{?Jha=R3{l=QViLAg}Q=#`z8DGuqB+q_x+O zX}zWo9y@yBkZGfBhxQo=tF@EwaDVl!t*x!a+gvBja-Z$u;-f-sZEt9si;itLiU0>nv3O{|xt``WsW^40rxbM1d#zLZt&A%x(#qJRs z7X`J{EMTvgGkie=Zq)(g%+GsegmJmO0-!l{7U%%k;s^6K1xs}e3Q0J#L;=u(&+_>S z#rC|4<>7)83`_ihEFDpPeUyR-Ub#+1q-8GC0n|9No{S~9Qv4d5m`06Ou@p@WVTkf? zTPujf_O1x}^2AGqCGOU39g$s_%U27Fx_NbKz~?*iy+41xr+Par9Bt#&XWW9pW1Z}s zMvdm5?;$gW^tQ4a(x>md!K1#i8#k(-*U)=o3VcstqS=lhB+-mb+z_w)T%Uajzl z&-b3V9F@N-{Ft25R0h!BS};flP~%xu0g#Fhd{itEj^FbYMw2Qv#O)8>5eWXZP{nd% zbsK@?0TnWq(&NVvuiv7_qhi1XFvYXDLfWTzsM zI_1lVgy=~UBJbt9DuCYdjnJ{gvwB!ao?Jte)E{PuQfRRmL1Vt~*DTE`Ex8EGbelgvJ9tkWVl!g8(?Tbk!J|gccN#T?KRdWB81H56 zHFT6W|8C%9HEvCT>;QVpo*`c=`+^oev`Pt#GTr%cwpB+g0nOK>>AN;7A zGN0Asf!|K< zreAabsp?>(AWGNWQ4vXv%}24scHAjp$!OD?0qE^)`Y{i^~uS}bB%u5aqk zS9n{l*$9%lxk`mX*qHA$08QS#SjKW`UI<_L=*o%qRp}Dqd5iBHgc>e%wxZbqw=R~Bmj*Z zpC?Mygi!)nQ%l7tbA*L%0o!D*ZO&Kz){PUh5H#QSa~%rJ8-7Ltkb*an&KR;FRA5um+Sr4%p z&Y!AAOdHxCevs+q1wXisTR6sR@Yvz=oovSOr>n1Q$M+v-JAM%UAam53-zxv_pZkN1 zHUGVqy@Pw_4tD&7KppI?T=@l9-0a~*1-71cZdMNNt`7X?+rRn2^?uJ*5`RDV8P#(& z89-kJTw{pb!&xeTglC-OD<2hq?It1EfhAZ-y7hYui_!EL3yrK2Ka$YOO<@|2@)ov7 z$QFSX3YLP;y;J}(y|bQSF*JykvBd9~#aI5eX#bx@$t`0l6!Q49rJ`J2{y>643j^n= z0Fpa>CW59NYan6Ct9O&Hd=wT!6om0Wl!_?7xE4XHs%_J;WTftAh?sCY8F4%Qpbnrx z7v?Ki4Ac6n0RI1P)#d+Ft@>39{(o=&dvg!`Z@C9jy4Hjzu}j{6eiC!D=70NM=rqI0 zYVas;ukn3`^Cz*X-s5{)Pvw6j=Ra?avmdhXD|@GDy{3&HJI34m^Hz3y@sa;?pTz#k z>kR+)NsI(dss--}KVtEAR~evJtKLlkP~-V!8i3q7`c%hK@$DjkkXvgtC?u|TCmBHV z%HCBFIejl`i1@ruWW?jS%_M+aZOVKVK+@Ot5xC#JgA9clk9?saF1XA?kUKq1Jn)V4 z@0?NqR9&=Nlw?1Xj>Ry_MM9)(6W;vXeUaA_i7mm3A79o$o+A;geBhprVgOG-7^G<_USBP**u~#U-@3zx>gF} z@yGpj#LcZO1X9fh@DdhsT!Rr!zW;&&_-_mzDp+FkVkIo;<#TjIZilNffHGyFD1l8c zDOiHKwblUS(X&q_EQaCZ7{ZipsR86_58YG%DeK*cA<8SgB!pq%Dj5-!rf2{f>eWxe zQZa3hK{XZ8B~)(E$8>YvMZ;HSHhF z1K-{7Qar{;$nivm+oYd2-#>Q;m1|g{2PE*7?;e}=xr&G@NYW6-ycG7?GmGm8fPUO1s$O}BJpSq1yQltT16zk zdRGUK$B`8>BHBBjulxq%JAR^IF@)^Z5K&*>)e%)QJ!JsRyW5Yie0O%|1cF|BH&25? z&n!AFBjR&X8GvL@d!!-q0!nm*ezZbDRDN<-1yIxCclpYZEOkPVyzb_AzC3A?hNIXp z^M`!0_4lF#y&JB=h{UdEGJ@^PkPrsvQXN18R*cXPrmCe9BH`669YC_a&QKACDPA%{ zPk5IBXy#^1QB3>3L(s^{FC_~YmD$-M2-5<^D5}wI1x6&Tj<|nF;^2`Q7B;WC!sMDy20ZsbETI&iatHuNrpnAN8geV z5zi78L}IqLfGNoQZiF~aw(7=IRBrHjVwHcQDiv2R;*3rirfaG+)Axf6{ zg{ri4K{TK6(GF#UjyRTj0YQtBCo(Kq2BU^Bd{(I-j1k^gXzarAI+lBPm&%A-k8}lb zFz}iNpz|;I2~=!qqhLw!|AHaXdbQIK=N`1dLSp)dh!P*#UxyLNxp7L23@z+bEMZ@k z$N*Y((fsgB9<@)$(Zfj&5{}Y(`!U3$FCzKMZ>MbD4+_H2<^_V@>GY!vg(lm$sfeT- zRT_X~#^lNZjprk1+Rf?$DXq>j3)m)WS-L=6$j1m;e$mTf97Vl+s3D4v?n3Zu>X=k4362AFM96+G36Y*t zkFWd&(=U$I5haIjAM?P=?N(hG;`9LV#Yhd>Z5+|G)z?%Q(X!3uSV-lFx(b%q%OkMR_{fJc zmh_OV8Y0SitO_8Bu8|U!mv%8SmU~s=t<%I&TNE7SO?)gNGAuW%0AgI$R72!gyi`lR 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 literal 42373120 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

waNRo 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�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

27R82D?+PQs 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 CIQqJ{IXFAHdHVV|J3Dzg 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

@_N^ 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

gRCVyI3ij!QHU{DS9Jg`m3y$Ou;XQMy4W8zkOC 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¥*vOX*TLl^#RP+G#w3(`*JrKmLK(|fXs!XWlB}t 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

Q7N1eiTezLK!G4R#Zw`1v2vO4oB}_WJ-U^LWcZ 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

6!wP4YnN8HrG>{JZqLG9Lhdd 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

    U^CFx7HV5Zk|xO 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

    4_0y|m1XlIMIspZ3HmYRO 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�Rx~J6Kw-lp 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%0DVUS8CwXm8m=UNf&jNu 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